HTML Introduction

HTML Introduction

Suraj (UI/UX Developer)
Jun 2024
HTML

<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8">

<title>Website Name</title>

<!-- this link Use for Responsive media Queery work for use -->

<meta name="viewport" content="width=device-width, initial-scale=1">

<!-- Use for Responsive media Queery work for use end link-->

<!-- User this for css style -->

<style>

</style>

<!-- end before End of the head section User this for css style -->

</head>

<body>

<h1>Size of This for Heading</h1>

<h2>Size of This Heading Mediam</h2>

<h3>Size of This Title</h3>

<h4>Size of This Text</h4>

<h5>Size of This Sub Title </h5>

<h6>Size of This Paragraph etc.</h6>

<p>Use for Paragraph Size of This</p>

<!-- User for the link -->

<hr />

<!-- User for the link end-->

<!-- Breat the line user for -->

<br />

<!-- Breat the line user for end -->

</body>

</html>