-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnew.html
More file actions
24 lines (23 loc) · 1.2 KB
/
Copy pathnew.html
File metadata and controls
24 lines (23 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<title>HELLO</title>
</head>
<body style="background-color:rgb(173, 173, 213);">
<h1>HTML</h1>
<h2>HTML</h2>
<h3 style="font-size:20; color: yellow;">HTML</h3>
<h4>HTML</h4>
<h5>HTML</h5>
<h6>HTML</h6>
<p title="Hypertext_markup_language">It uses markup to describe the structure of of web pages.
<br> The structure is build up of elements and represented by tags.</p>
<p>The DOCTYPE html specifies that it is a html document</p>
<a href="https://docs.google.com/document/d/175DRBMxkgQDnQFZHwF8jGKRrjtqFseX_Z9JrfoTsiAs/edit#">Used to insert link</a>
<br><br>
<img src="C:\Users\Perennial\Pictures\Screenshots\html image.png" alt="This is an image" width="200" height="200">
<img src="https://images.unsplash.com/photo-1541807084-5c52b6b3adef?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=387&q=80" alt="laptop" width="100" height="100">
<br><br>
<p style="color: blueviolet;">All html elements have attributes which gives additional information about it. They are always specified in start tag. Attribute has name value pair. Eg. href, alt, width, height.</p>
</body>
</html>