this is the header of our page
This is just the beginning of my practice, we'll go more reactive and responsive over the courses.
Meta tag - in html, meta tag describes what your website is about i.e gives info about your page!
the syntax 1 is < meta name = ' ' content = " >(btw this does not have a closing tag) this what loads down to your website url on google! " description --> you can add multiple names and contents in meta tag to describe your website more in detail.
the syntax 2 is < meta charset=" utf-8"> just tells us what characters are being used!
the syntax 3 is < meta name= "robots" content="(no)index,(no)follow" > helps the webcrawler to index your webpage on the search and follow helps crawler to follow all the links in your website.
imp syntax 4 is < meta name ="viewport" content="width=device-width, initial-scale=1"> allows to view your site on device used perfectly.
< link rel= "icon" href="" > is used in head tags usually
1.< img src="" alt="" height="" width="">
2.a.< video> height= "" width = "" src="" < /video> (we dont use alt attribure in video tag! )
2.b. If you have multiple sources i.e you dont know exactly the type of video,
< video height="" width="">
< source src="" type="video/mp4">
< source src="" type="video/obb">
< source src="" type="video/gif">
< /video>
3.< a target="_blank" href="" >text goes here < /a>
You can add image in place of text in anchor tag by nesting img tag in anchor tag!
< a href="" download >< /a> allows to download when the user clicks on the hyperlink.
4.Forms
< form >
< label for="id1">input1 < /label>
< input required type="textemailpassword" id="id1" maxlength="" minlength="" />
spellcheck="trueorfalse" attribute in input tag helps to check the spelling of the input entered.
Its important to have label tag above input tag
< button type="submit">submit< /button>
< /form>
5.DropDown
< select name="" id="" >
< option value="val1"> OPt1< /option> (when form is submitted value of option1 is selected, not opt1,, name is give on select tag!)
< option> OPt2< /option>
< option> OPt3< /option>
< /select>
6.Radio Buttons
< input type="radio" name="productslist" value="product1">
< input type="radio" name="productslist" value="product2">
< input type="radio" name="productslist" value="product3">
You can see the name of the options available is same but the value of the options change and thats what gets submitted!
7.Lists
7.a.UnOrdered Lists - gives us a .
< ul>
< li> item 1< /li>(list item)
< li> item 2< /li>
< /ul>
7.b.Ordered List
< ol>
< ol>Chapter 1
< li>C1S1< /li>
< li>C!S2< /li>
< /ol>
< /ol>
You can also add anchor tag in listitem.
8.Tables
< table>
< tr >
< th> th>
< th> th>
< th> th>
< /tr>
< tr>
< td> td>
< td> td>
< td> td>
tr>
< tr>
< td> td>
< td> td>
< td> td>
tr>
< /table>
output table:
Cycle | Season | Month |
---|---|---|
1 | 1 | 1 |
2 | 2 | 2 |
Element Name | use of the element |
---|---|
Section | Used for grouping of content that has a heading! Eg.Chapters, Contact Info..etc |
Article | Independent, self-contatined content Eg.Blogs, Newspaper content, Forums |
Nav | All the navigation links can be placed under nav tag |
Footer | All the footer elements |
Header | All the header elements |