-
Notifications
You must be signed in to change notification settings - Fork 4
/
About.html
85 lines (81 loc) · 2.71 KB
/
About.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
<!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" />
<title>Clock using pure JS/About</title>
<link rel="stylesheet" href="about.css" />
<link
href="https://fonts.googleapis.com/css2?family=Acme&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap"
rel="stylesheet"
/>
</head>
<body>
<!-- Navigation bar -->
<nav class="navigation">
<ul>
<label for="">iClock</label>
<li><a href="./index.html">Home</a></li>
<li><a href="#about" class="active">About</a></li>
<li><a href="./contact.html">Contact</a></li>
</ul>
</nav>
<!-- Heading -->
<div class="wrapper">
<div class="heading">About Section</div>
</div>
<!-- Description -->
<div class="container">
<div class="analog">
<div class="subHead">
<h1>Analog Clock</h1>
</div>
<div class="desc">
<p>
<i>An analog clock is a tool for reading the time of day</i>. This
is an analog clock which is purely made by <b>HTML, CSS and JS</b>.
Being more <i>creative</i>,<b>
changing of themes of clock feature
</b>
is also present. Choose you favourite theme by
<b>Left Click on the clock</b>. There are <b>5 different</b> themes
available. Some additional features like
<i
>glass background finish, rising up img on hovering the mouse
etc.</i
> <br> <b>THANK YOU FOR VISITING...</b>
</p>
</div>
</div>
<div class="digital">
<div class="subHead">
<h1>Digital Clock</h1>
</div>
<div class="desc">
<p>
<i>A digital clock is a type of clock that displays the time digitally</i>.This
is also purely made by <b>HTML, CSS and JS</b>.
Some additional features like
<i
>glass background finish, rising up of clock on hovering the mouse
etc.</i
>
<br>
<b>(Click on <i>"Switch Button"</i> to switch from Analog to Digital)</b>
<br>
<br> <b>THANK YOU FOR VISITING...</b>
</p>
</div>
</div>
</div>
</body>
</html>