HTML Coding
HTML Coding
DOCTYPE html>
< html>
<head>
<title> First page </title>
</head>
<body>
<h1> This is a First Pge </h1>
<p> Hello World </p>
</body>
</html>
HTML Formatting
<! DOCTYPE html>. Block level Elements
<html>. Most common elements used
<head>. <p> <div>
<title> Our Website </title>. Browser set default space before
</head>. and after the element
<body>
<p> This is a Paragraph </p>
<p style ="border: 1px Solid - Black"> This is a Paragraph </p>
<div style ="border: 1px Solid -Black"> This is a Paragraph </p>
<p style = " font- size : 50px ; "> This is a Paragraph</p>
</body>
</html>
HTML Formatting
<! DOCTYPE html>. Bold <b>
<html>. strong<strong>
<head>. Mark <mark>
<title> Our Website </title>
</head>
<body>
<p> This is a Paragraph One </br> Two---------
--------------------------------</p>
<a href = "http//: www.youtube.com">You tube </a>
<img src = "image.jpg" width = "300" height= "300">
</body>
</html>