0% found this document useful (0 votes)
3 views1 page

HTML Coding

The document contains multiple HTML examples demonstrating basic structure and formatting elements such as headings, paragraphs, links, and images. It highlights the use of block-level elements and inline styles. Additionally, it includes various HTML tags like <b>, <strong>, and <mark> for text formatting.

Uploaded by

owaiszaki414
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views1 page

HTML Coding

The document contains multiple HTML examples demonstrating basic structure and formatting elements such as headings, paragraphs, links, and images. It highlights the use of block-level elements and inline styles. Additionally, it includes various HTML tags like <b>, <strong>, and <mark> for text formatting.

Uploaded by

owaiszaki414
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

< !

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>

You might also like