Sunteți pe pagina 1din 2

<!

DOCTYPE html>
<html lang="en-US">
<head>
<head>
<title>My First HTML</title>
<meta charset="UTF-8">
</head>
<body>

<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
<h1 style="font-size:60px;color:red">Heading 1</h1>

<h1>This is heading 1</h1>


<p>This is some text.</p>
<hr>

<h2>This is heading 2</h2>


<p>This is some other text.</p>
<hr>

<p>This is a paragraph.</p>
<p style="color:red">I am a paragraph</p>
<p>This is another paragraph....</p>
<p title="I'm a tooltip">This is a paragraph. Point Cursor here.</p>

<img src="w3schools.jpg" alt="W3Schools.com" width="200" height="205">


<img src="https://www.reduceimages.com/img/image-after.jpg" width="408"
height="272">
<br>
<img src="images.jpg" alt="Ducklings"width="500" height="600">
<img src="img_girl.jpg" width="500" height="600">

<button>Aditya Click here</button>

<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>

<ol>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>

<a href="https://www.w3schools.com">This is a link</a>


</body>
</html>

S-ar putea să vă placă și