Posts

Showing posts with the label html

CREATING TABLES IN HTML

 -:HOW TO CREATE TABLES IN HTML     :- how to create tables in html to create follow me. TYPE:-      HTML Table Example <table> <tr> <th> Column #1 </th> <th> Column #2 </th> </tr> <tr> <td> Row #1 </td> <td> Row #2 </td> </tr> <!-- YOU CAN ADD MANY COLUMNS AND ROWS YOU LIKE --> </table> Light/Dark Mode Copy result= Collumn#1 collumn#2 row#1 row#2

A TIP#3

Image
Using Figure and Figcaption in HTML Below is an example of how to use the <figure> and <figcaption> elements to properly structure images and their captions: This is the caption for the image. Using these elements enhances accessibility and provides better context for your images! the code HTML Figure Example <figure> <img src = "example.jpg" alt = "Description of the image" width = 400 /> <figcaption> This is the caption for the image. </figcaption> </figure> Light/D Copy

A tip2

Image
Ti p :   U s e   t h e    <hr>   T a g  f o r   H o r i z  o n t a l  R u l e s  The <hr> tag creates a horizontal line that can be used to separate content sections visually. It’s great for indicating a thematic break in your content. Example: < h2 > Section 1 </ h2 > < p > This is some content for section 1. </ p > < hr > < h2 > Section 2 </ h2 > < p > This is some content for section 2. </ p >

A tip for html

Image
   A   t i p   f o r   H T M L                                                                                                                                            Why you use script src and link stylesheets                             But you can directly add it by  <script>                               and css by  <style> 😅😅