Basic HTML Paragraph and Lists
Basic HTML Structure, i will explain the Basic HTML Paragraph and Lists
Lets Walk through the Code below together to understand the basic HTML Structure.
Below s show the complete code , lets break down into small snip-lets and get to understand how to create a Paragraph , list .
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>I am HTML</title> <meta name="description" content=""> <link rel="stylesheet" href="main.css"> </head> <body> <h1>Create Un Order List</h1> <ul> <li><a href="http">About Brian</a></li> <li><a href="http">Where Brian From</a></li> <li> <ahref = "http">Contact Brian</a></li> </ul> <hr> <p> Hi All my name is Brian</p> </body> </html>
Create an un-Order list using HTML
Belows show the code of how to create an Un-order list using HTML
- First create the Un order list tag <ul> </ul>
- Then Create your list tag<li> </li>
- Then if you want to input a Link into your List , Put in the Anchor tag <a href =” Your link “> </a>
- Finally put in your list Content
<ul> <li><a href="http">About Brian</a></li> <li><a href="http">Where Brian From</a></li> <li> <ahref = "http">Contact Brian</a></li> </ul>
Create an A paragraph using HTML
<p> Your Content inside here </p>
Check out Basic HTML structure also
Leave a Reply