-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
36 lines (35 loc) · 960 Bytes
/
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>
<head>
<link rel="stylesheet" href="./style.css"/>
<script
src="https://code.jquery.com/jquery-3.3.1.js"
integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60="
crossorigin="anonymous"></script>
<script src="./script.js"></script>
</head>
<body>
<div class="overlay">
<div class="top">
<div class="left">
<div>
Interest: <span class="interest-text"></span>
</div>
<div>
Photo by: <a class="photoby" href="#" target="_blank"></a>
</div>
</div>
<div class="right">
<div class="date"></div>
</div>
</div>
<h1 class="time"></h1>
<h2 class="greeting"></h1>
<input class="user-name" type="text">
<input class="interest" type="text">
<div class="change-btn">
Choose a new interest
</div>
</div>
</body>
</html>