-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdashboard.html
More file actions
97 lines (91 loc) · 4.64 KB
/
dashboard.html
File metadata and controls
97 lines (91 loc) · 4.64 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html>
<head>
<!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Rajdhani:400,500,600,700&display=swap" rel="stylesheet">
<!--Import materialize.css-->
<link type="text/css" rel="stylesheet" href="css/materialize.min.css" media="screen,projection"/>
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
</head>
<body style="font-family: Rajdhani,sans-serif; background-color: #f5f5f7; word-break: break-all;">
<nav class="blue">
<a href="#!" class="brand-logo white-text left" style="margin-left:35px"><b>Social Codia</b></a>
<div class="col s1 m4 l3">
<ul class="left">
<li>
<a href="#" class="sidenav-trigger" data-target="slide-out" style="margin:0px"><i class="material-icons black-text"><img src="src/icons/menu.png" width="25" alt=""></i></a>
</li>
</ul>
<ul class="right">
<li>
<div style="margin:0px; font-size: 30px" class="white-text" id="pageName">Dashboard</div>
</li>
</ul>
</div>
</nav>
<div class="row">
<div class="col s12 l4 m6">
<div class="card center z-depth-0">
<div class="card-content">
<div class="card-image" style="text-align: -webkit-center;">
<img class="circle responsive-img " style="height:100px; width: 100px;" src="img/user.png" alt="">
</div>
<table style="text-align-last: center">
<tr>
<th>Name : </th>
<td>Social Codia</td>
</tr>
<tr>
<th>Position : </th>
<td>CEO</td>
</tr>
<tr>
<th>Roll : </th>
<td>Software Engineer</td>
</tr>
<tr>
<th>Email : </th>
<td>socialcodia@gmail.com</td>
</tr>
</table>
</div>
</div>
</div>
<div class="col s12 l8 m6">
<div class="card z-depth-0">
<div class="row">
<div class="col s12 m12 l3">
<div class="card-content blue lighten-1 white-text" style="margin: 5px;">
<h3 style="font-weight: bold;">50,000</h3>
<p style="font-weight: bold; font-size:20px;">Target</p>
</div>
</div>
<div class="col s12 m12 l3">
<div class="card-content blue lighten-1 white-text" style="margin: 5px;">
<h3 style="font-weight: bold;">10,000</h3>
<p style="font-weight: bold; font-size:20px;">Complete</p>
</div>
</div>
<div class="col s12 m12 l3">
<div class="card-content blue lighten-1 white-text" style="margin: 5px;">
<h3 style="font-weight: bold;">40,000</h3>
<p style="font-weight: bold; font-size:20px;">Remaining</p>
</div>
</div>
<div class="col s12 m12 l3">
<div class="card-content blue lighten-1 white-text" style="margin: 5px;">
<h3 style="font-weight: bold;">#10th</h3>
<p style="font-weight: bold; font-size:20px;">Position</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!--JavaScript at end of body for optimized loading-->
<script type="text/javascript" src="js/materialize.min.js"></script>
<script type="text/javascript" src="js/jquery.js"></script>
</body>
</html>