-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.html
More file actions
32 lines (30 loc) · 984 Bytes
/
home.html
File metadata and controls
32 lines (30 loc) · 984 Bytes
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
<!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>Home-MPM</title>
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="home.css">
</head>
<body>
<span class="username">Hello Coster</span>
<div class="time">
<span></span>
<span></span>
</div>
<div class= "upcoming">
<span>upcoming</span>
<span>13:30 -</span>
<span>wine with movie</span>
</div>
<div class="menu">
<a href="friend.html"><i class="fas fa-user-friends"></i></a>
<a href="project.html"><i class="fas fa-folder"></i></a>
<a href="calander.html"><i class="far fa-calendar-alt"></i></a>
</div>
<script src="time.js"></script>
<script src="https://kit.fontawesome.com/8f9b37237f.js" crossorigin="anonymous"></script>
</body>
</html>