-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (66 loc) · 2.13 KB
/
Copy pathindex.html
File metadata and controls
78 lines (66 loc) · 2.13 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
<style>
.name {
color: purple;
}
#specialthings {
background-color: yellow;
}
/*body {
background-color: green;
}
*/
#green {
background-color: black;
}
li {
background-color: green;
}
</style>
</head>
<!-- <body>
<h1>Robin - It is an h1 tag</h1>
<h2>This is a subtitle - This is an h2 tag</h2>
<h3>I love dogs - This is an h3 tag</h3>
<br>
<br>
<div class="div">
<p>Here are some of the dogs that I like</p>
</div>
<ul>
<li>pugs</li>
<li>Golden Doodles</li>
<li><a href="https://www.google.com/search?q=golden+doodle&espv=2&biw=1359&bih=614&source=lnms&tbm=isch&sa=X&ved=0ahUKEwiu4-zb_OzRAhVI-2MKHQuiDScQ_AUIBigB#tbm=isch&q=golden+retriever+puppies"> Golden Retriever</a></li>
</ul>
</body> -->
<!-- <body style="background-color:red">
<h1 style="color:rgb(45, 225,255)">Robin - It is an h1 tag</h1>
<h2 style="color:#AA22FF" >This is a subtitle - This is an h2 tag</h2>
<h3>I love dogs - This is an h3 tag</h3>
<br>
<br>
<p style="color:red;background-color:green">Here are some of the dogs that I like</p>
<ul>
<li>pugs</li>
<li>Golden Doodles</li>
<li><a href="https://www.google.com/search?q=golden+doodle&espv=2&biw=1359&bih=614&source=lnms&tbm=isch&sa=X&ved=0ahUKEwiu4-zb_OzRAhVI-2MKHQuiDScQ_AUIBigB#tbm=isch&q=golden+retriever+puppies"> Golden Retriever</a></li>
</ul>
</body>
-->
<body>
<h1 class="name">Robin - It is an h1 tag</h1>
<h2 class="name">This is a subtitle - This is an h2 tag</h2>
<h3 class="name">I love dogs - This is an h3 tag</h3>
<br>
<br>
<p id="specialthings" class="name">Here are some of the dogs that I like</p>
<ul>
<li id="green">pugs</li>
<li >Golden Doodles</li>
<li><a href="https://www.google.com/search?q=golden+doodle&espv=2&biw=1359&bih=614&source=lnms&tbm=isch&sa=X&ved=0ahUKEwiu4-zb_OzRAhVI-2MKHQuiDScQ_AUIBigB#tbm=isch&q=golden+retriever+puppies"> Golden Retriever</a></li>
</ul>
</body>
</html>