-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPractical_4(A).html
More file actions
48 lines (48 loc) · 993 Bytes
/
Practical_4(A).html
File metadata and controls
48 lines (48 loc) · 993 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Internal Stylesheet</title>
<style>
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
h1 {
font-size: 6rem;
font-family: "Times New Roman", Times, serif;
text-align: center;
}
body {
background-color: #383838;
color: aliceblue;
}
body > div {
display: flex;
height: 100vh;
align-items: center;
flex-direction: column;
padding: 5rem 0 0 0;
}
ul > * {
padding: 2rem 0 0 2rem;
font-size: 4rem;
}
</style>
</head>
<body>
<div>
<h1>Hello my name is smit!!</h1>
<ul>
<li>I Love:</li>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JS</li>
</ul>
</ul>
</div>
</body>
</html>