-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIndex.html
38 lines (38 loc) · 845 Bytes
/
Index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Brian Cheloti</title>
<style>
#hd1{
color: red;
background-color: aqua;
}
.cls1{
font-style: italic;
color: blue;
}
.cls2{
border: 35px ridge red;
}
#hd3:hover{
background-color: yellow;
border: 2px solid;
}
</style>
</head>
<body>
<h1 id="hd3" class="cls1 cls2">This is heading one</h1>
<h2 class="cls1">This is heading two</h2>
<p class="cls2">This is a paragraph</p>
<h1>This is heading one</h1>
<h2 class="cls1">This is heading two</h2>
<p>This is a paragraph</p>
<h1>This is heading one</h1>
<h2 class="cls1">This is heading two</h2>
<p>This is a paragraph</p>
<h1>This is heading one</h1>
<h2 class="cls1">This is heading two</h2>
<p>This is a paragraph</p>
</body>
</html>