-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (41 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Slab&display=swap" rel="stylesheet">
<link rel="stylesheet" href="res/css/style.css">
<title>postIt! Just Post It</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
</head>
<body>
<header>
<nav>
<div class="logo-container">
<img src="res/images/logo.png" alt="postIt">
</div>
<div class="search-container">
<input type="text" name="search"><button type="button">Search</button>
</div>
<div class="avatar-container">
<img src="res/images/avatar.png" class="avatar" alt="Me">
<table class="dropdown">
<tbody>
<tr>
<td><p id="loggedInUserName"></p><p id="loggedInUserEmail"></p></td>
</tr>
<tr>
<td><a href="browse.html">Browse</a></td>
</tr>
<tr>
<td><a href="login.html">Log Out</a></td>
</tr>
</tbody>
</table>
</div>
</nav>
</header>
<section class="main-container">
</section>
</body>
<script src="res/js/app.js"></script>
</html>