-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
135 lines (118 loc) · 3.27 KB
/
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
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<title>Clock.com</title>
<style>
* {
margin: 0px;
padding: 0px;
text-decoration: none;
}
/*
@media only screen and (max-width:300px) {
body {
background-color: red;
} */
body {
background-color: peachpuff;
}
#section {
background-color: lavender;
}
nav {
background-color: skyblue;
margin: 0px;
display: flex;
justify-content: center;
}
nav>img {
margin: 5px 0px;
height: 85px;
}
#section {
display: flex;
}
section+img {
margin-left: 7rem;
}
section>div {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 2rem;
padding: 1rem;
margin-left: 5rem;
}
#cards {
display: flex;
}
#cards:hover {
cursor: pointer;
}
#ac {
margin-top: 20px;
margin-bottom: 10px;
}
#dc {
margin-top: 20px;
margin-bottom: 10px;
}
.card {
padding: 34px;
padding-top: 0px;
margin: 55px 189px;
border-radius: 28px;
background: #f2813b;
margin-bottom: 20px;
color: white;
box-shadow: 9px 9px #c03c38;
}
.card img {
height: 160px;
margin: auto;
display: block;
}
a {
color: white;
}
</style>
</head>
<body>
<nav>
<img src="Clocklogo.png" alt="Clock.com">
</nav>
<section id="section">
<section>
<div>
Not in mood to see time at bottom right of your screen ?
</div>
<div>
No worries !!
</div>
<div>
I have two clocks for you :)
</div>
</section>
<img src="SmallClock.png" alt="">
</section>
<section id="cards">
<div class="card">
<a href="AnalogClock.html" target="_blank">
<!-- <a href="\analog" target="_blank"> -->
<img id="ac" src="clock.png" alt="">
<h2>Analog Clock</h2>
</a>
</div>
<div class="card">
<a href="DigitalClock.html" target="_blank">
<!-- <a href=".\Digital" target="_blank"> -->
<img id="dc" src="alarm.png" alt="">
<h2>Digital Clock</h2>
</a>
</div>
</section>
</body>
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
</html>