-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
85 lines (81 loc) · 2.5 KB
/
about.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!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" />
<link rel="stylesheet" href="css/main.css" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.15.3/css/all.css"
integrity="sha384-SZXxX4whJ79/gErwcOYf+zWLeJdY/qpuqC4cAa9rOGUstPomtqpuNWT9wdPEn2fk"
crossorigin="anonymous"
/>
<title>Dashboard</title>
</head>
<body>
<main>
<nav>
<ul>
<li>
<div class="nav-avatar"></div>
<p class="avatar-user">UserName</p>
</li>
</ul>
<ul>
<li>
<a href="books.html" class="active"
><i class="fas fa-book"></i> Books</a
>
</li>
<li>
<a href="dissertation.html"
><i class="fas fa-book-open"></i>Dissertation</a
>
</li>
<li>
<a href="articles.html"><i class="fas fa-newspaper"></i>Articles</a>
</li>
<li>
<a href="about.html"><i class="fas fa-info-circle"></i>About</a>
</li>
<li>
<a href="contact.html"
><i class="fas fa-address-card"></i>Contact</a
>
</li>
<li>
<a href="claims.html"><i class="fas fa-address-card"></i>Claims</a>
</li>
</ul>
</nav>
<section>
<div class="topnav">
<a href="dashboard.html" class="topnav-logo"></a>
<div class="nav-items">
<form action="" class="nav-item">
<select name="" id="">
<option value="1">1</option>
<option value="2">2</option>
</select>
<a href="index.html">
<button class="btn accent-color">Logout</button>
</a>
</form>
</div>
</div>
<!-- --------------------------- -->
<div class="g-container fade">
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Consequatur
perferendis dignissimos soluta, nemo pariatur repellat praesentium
blanditiis unde vitae aliquam quasi ipsa eaque eum ad facere neque
magnam dicta rerum!
</p>
</div>
<!-- --------------------------------- -->
</section>
</main>
<script src="js/tables.js"></script>
</body>
</html>