-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (80 loc) · 1.64 KB
/
Copy pathindex.html
File metadata and controls
99 lines (80 loc) · 1.64 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<title>THE MINI-PROJECT</title>
<head>
<title>JSX</title>
<link rel="CLOCK" href="MINI-PROJECT.htm" />
</head>
<style>
html {
background-color:#FDF5E6;
}
header {
background-color: #666;
padding: 60px;
text-align: center;
font-size: 55px;
color: white;
background-image: url('https://assets.hackclub.com/flag-standalone.png');
background-repeat: no-repeat;
background-attachment: fixed;
}
section {
display: -webkit-flex;
display: flex;
}
nav {
float: left;
width: 100%;
top: 10%;
height: 380px; /* only for demonstration, should be removed */
padding: 20px;
}
nav ul {
list-style-type: none;
padding: 0;
}
footer {
background-color: #777;
padding: 10px;
text-align: center;
color: white;
}
* {
margin: 0;
padding: 0;
}
.controls {
position: fixed;
text-align: center;
width: 100%;
}
.button {
color: #000;
font-size: 3vw;
margin: 0 2em;
text-align:center;
text-decoration: none;
}
</style>
</head>
<body>
<header>
<h4>WELCOME!!!!</h4>
</header>
<section>
<nav>
<ul>
<li> <a href='./clock.html' class='button'>*CLOCK</a></li>
<li><a href='./piano.html' class='button'>*PIANO</a></li>
<li> <a href='./stop_watch.html> class='button'>*STOPWATCH</a></li>
</ul>
</nav>
</section>
<footer>
<h1>Thankyou<span style='font-size:50px;'>✋</span></h1>
</footer>
</body>
<script>
</script>
</html>