-
Notifications
You must be signed in to change notification settings - Fork 2
/
dashboard.html
59 lines (40 loc) · 2.36 KB
/
dashboard.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
<!DOCTYPE>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8">
<link href="https://fonts.googleapis.com/css?family=Work+Sans:400,800" rel="stylesheet">
<script defer src="https://use.fontawesome.com/releases/v5.0.9/js/all.js" integrity="sha384-8iPTk2s/jMVj81dnzb/iFR2sdA7u06vHJyyLlAd4snFpCl/SnyUjRrbdJsw1pGIl" crossorigin="anonymous"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css" rel="stylesheet">
<link href="dashboard.css" rel="stylesheet">
<title>Call Analyzer</title>
</head>
<body>
<div class="primary-nav">
<button href="#" class="hamburger open-panel nav-toggle">
<span class="screen-reader-text">Menu</span>
</button>
<nav role="navigation" class="menu">
<a href="#" class="logotype">Call<span> Analyzer</span></a>
<div class="overflow-container">
<ul class="menu-dropdown">
<li><a href="dashboard.html">Dashboard</a><span class="icon"><i class="fas fa-tachometer-alt"></i></span></li>
<li><a href="analyze.html">Analyze</a><span class="icon"><i class="fas fa-chart-line"></i></span>
<li><a href="contact.html">Contact</a><span class="icon"><i class="fa fa-envelope"></i></span></li>
<li><a href="view.html">View</a><span class="icon"><i class="fas fa-eye"></i></span></li>
<li><a href="#">Logout</a><span class="icon"><i class="fas fa-sign-out-alt"></i></span></li>
</ul>
</div>
</nav>
</div>
<div class="new-wrapper">
<div id="main">
<div id="main-contents">
<h1>Welcome To Call Analysis</h1>
<p class="intro"><strong>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
</div>
</div>
</div>
</body>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script type="text/javascript" src="dashboard.js"></script>
</html>