-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathattributes.html
More file actions
30 lines (26 loc) · 1.37 KB
/
attributes.html
File metadata and controls
30 lines (26 loc) · 1.37 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
25
26
27
28
29
30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>attributes on elements</title>
</head>
<body bgcolor="lightgrey">
<div align="center">
<h1 style="background-color: beige; border: 2px solid blanchedalmond; color: blue; font-style: italic;">Attributes on Elements</h1>
<h2 style="color: brown; font-style: oblique ;">Home</h2>
<h3 style="font-style: normal ;">Properties </h3>
<h4>Legend</h4>
<h5>Label</h5>
<h6 >Hello</h6>
<p style="color: blueviolet;font-style: initial;">Lorem ipsum dolor sit amet consectetur, adipisicing elit.
Labore pariatur quam corrupti<br> sequi dolore vel amet quod ea consectetur suscipit! Vel beatae rerum
ratione reprehenderit <br>veritatis corporis nesciunt inventore saepe.</p>
</div>
<img src="Image.png" alt="Horse Running" width="104pxl" height="142pxl"><br>
<a href="http://www.facebook.com" target="_blank">This is facebook link </a>
<p style="color: red; font-size: larger;" title="Lorem">Lorem ipsum dolor sit amet consectetur adipisicing elit.
Expedita eaque quam, nostrum non nesciunt quos fugit ullam. Corrupti, quod dolores molestiae illum iste dolorum
voluptatem possimus molestias exercitationem, ratione deserunt!</p>
</body>
</html>