-
Notifications
You must be signed in to change notification settings - Fork 1
/
entries.html
47 lines (38 loc) · 1.49 KB
/
entries.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
<!DOCTYPE html>
<html>
<head>
<title>Entries</title>
<!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!--Import materialize.css-->
<link type="text/css" rel="stylesheet" href="css/materialize.min.css" media="screen,projection"/>
<link rel="stylesheet" href="css/main.css">
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
</head>
<body>
<aside>
<div class="top-div-aside">
<img src="images/user-picture.jpg" alt="">
<h5>Username</h5>
<h6>abc@gmail.com</h6>
</div>
<div>
<div class="collection">
<a href="index.html" class="collection-item">Dashboard</a>
<a href="entries.html" class="collection-item active">Entries</a>
<a href="create.html" class="collection-item">Create Forms</a>
<a href="settings.html" class="collection-item">Settings</a>
</div>
</div>
</aside>
<div class="right-side">
<h3>Entries</h3>
<p></p>
</div>
<!--JavaScript at end of body for optimized loading-->
<script type="text/javascript" src="js/materialize.min.js"></script>
<!-- jQuery CDN -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
</body>
</html>