forked from nikkybel/rayhab-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcoding-class.html
More file actions
46 lines (44 loc) · 1.11 KB
/
Copy pathcoding-class.html
File metadata and controls
46 lines (44 loc) · 1.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>coding-class</title>
</head>
<body>
<h1 ><span>hello</span> world</h1>
<h2>today is saturday</h2>
<h3>we are having coding class!!!</h3>
<p>vihtfvdhhcvhkhmghfvnhghdmuyhyt</p>
<h4>vhvfbcnd hbhyuhfj;hg</h4>
<h5>super</h5>
<style>
body{
background-color: black;
}
h1{
color: pink;
font-size: 59px;
}
span{
color: white;
}
h2{
color: palevioletred;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
h3{
color: white;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
p, h4{
color: purple;
font-size: 50px;
}
h5{
color: bisque;
font-size: 50px;
}
</style>
</body>
</html>