-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss.html
More file actions
65 lines (61 loc) · 1.33 KB
/
Copy pathcss.html
File metadata and controls
65 lines (61 loc) · 1.33 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
<!DOCTYPE html>
<html>
<head>
<title></title>
<style >
*{
font-family: "Times New Room"
}
#one {
background-color: grey;
text-align: center;
text-decoration: white solid underline;
font-weight: lighter;
font-family: roboto ;
line-height: 50px;
text-transform: uppercase;
}
h1{
text-transform: uppercase;
text-align: center;
border: solid;
background-color: red;
border-color: green;
}
.heading {
color: red;
}
button:hover{
border: 2px solid black;
background-color: orange;
color: red;
}
#inner{
font-size: 10px;
}
#outer{
font-size: 25px;
}
</style>
</head>
<body>
<h1>Heading</h1>
<div id="one">
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
i am a humanoid alpha robot who kills people yess
</div>
<h1 class="heading">Hi am john </h1>
<h2 class="heading">John banega don </h2>
<h3 class="heading">Dhinka chika </h3>
<button id="but" style="background-color: pink">Confirm</button>
<div id="outer">outer
<div id="inner">inner
</div>
</div>
</body>
</html>