Practice Example Begaineers
Practice Example Begaineers
<head>
<title>My First Webpage</title>
</head>
<body>
<h1>Welcome to HTML</h1>
<p>This is my first web page using HTML.</p>
</body>
</html>
</body>
</html>
Example Bold , Italics and Underline
<html>
<head>
<title>Text Formatting Example</title>
</head>
<body>
</body>
</html>
Font color , size and Face
<!DOCTYPE html>
<html>
<head>
<title>Font Tag Example</title>
</head>
<body>
</body>
</html>
Order and Un order list
<!DOCTYPE html>
<html>
<head>
<title>HTML Lists Example</title>
</head>
<body>
</body>
</html>
EX1
<ol type="A">
<li>English</li>
<li>Math</li>
<li>Science</li>
</ol>
EX2
<ul type="square">
<li>Pen</li>
<li>Pencil</li>
<li>Notebook</li>
</ul>