-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (35 loc) · 1.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Neumorphic css</title>
<link rel="stylesheet" href="./style.css">
<script src="https://kit.fontawesome.com/becbb30976.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="container">
<div class="wrapper-1">
<div class="content">
<h4>June 1, 2020.</h4>
<h1>Moonwatch Is Coming</h1>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit.
Quae in rerum et asperiores tempore possimus quas, <br/>voluptate aspernatur.
Vero unde molestiae mollitia pariatur facere. Natus quam temporibus eveniet
molestias <br/> repellendus, quidem dignissimos, cum earum delectus similique nobis,
omnis quos laboriosam. Atque nisi quod corrupti odio?</p>
</div>
<div class="btn"><a href="#">Read More</a></div>
</div>
<div class="wrapper-2">
<div class="round">
<div class="timer">
<span></span>
</div>
</div>
<div id="clockDisplay" class="clock"></div>
</div>
</div>
<script src="./app.js"></script>
</body>
</html>