-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdates.html
74 lines (68 loc) · 3.09 KB
/
updates.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
<!DOCTYPE html>
<html>
<title>UPDATES</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/w3.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
body, h1,h2,h3,h4,h5,h6 {font-family: "Montserrat", sans-serif}
.w3-row-padding img {margin-bottom: 12px}
/* Set the width of the sidebar to 120px */
.w3-sidebar {width: 120px;background: #222;}
/* Add a left margin to the "page content" that matches the width of the sidebar (120px) */
#main {margin-left: 120px}
/* Remove margins from "page content" on small screens */
@media only screen and (max-width: 600px) {#main {margin-left: 0}}
</style>
<body class="w3-black">
<!-- Icon Bar (Sidebar - hidden on small screens) -->
<nav class="w3-sidebar w3-bar-block w3-small w3-hide-small w3-center">
<!-- Avatar image in top left corner -->
<img src="images/avatar_smoke.jpg" style="width:100%">
<a href="home.html" class="w3-bar-item w3-button w3-padding-large w3-hover-black">
<i class="fa fa-home w3-xxlarge"></i>
<p>HOME</p>
</a>
<a href="account.html" class="w3-bar-item w3-button w3-padding-large w3-hover-black">
<i class="fa fa-user w3-xxlarge"></i>
<p>PROFILE</p>
</a>
<a href="discover.html" class="w3-bar-item w3-button w3-padding-large w3-hover-black">
<i class="fa fa-eye w3-xxlarge"></i>
<p>DISCOVER</p>
</a>
<a href="updates.html" class="w3-bar-item w3-button w3-padding-large w3-black">
<i class="fa fa-envelope w3-xxlarge"></i>
<p>UPDATES</p>
</a>
</nav>
<!-- Navbar on small screens (Hidden on medium and large screens) -->
<div class="w3-top w3-hide-large w3-hide-medium" id="myNavbar">
<div class="w3-bar w3-black w3-opacity w3-hover-opacity-off w3-center w3-small">
<a href="home.html" class="w3-bar-item w3-button" style="width:25% !important">HOME</a>
<a href="account.html" class="w3-bar-item w3-button" style="width:25% !important">PROFILE</a>
<a href="discover.html" class="w3-bar-item w3-button" style="width:25% !important">DISCOVER</a>
<a href="updates.html" class="w3-bar-item w3-button" style="width:25% !important">UPDATES</a>
</div>
</div>
<!-- Page Content -->
<div class="w3-padding-large" id="main">
<!-- Testimonials -->
<h3 class="w3-padding-24 w3-text-light-grey">UPDATES</h3>
<img src="images/bandmember.jpg" alt="Avatar" class="w3-left w3-circle w3-margin-right" style="width:80px">
<p><span class="w3-large w3-margin-right">Chris Fox.</span> CEO at Mighty Schools.</p>
<p>Jane Doe saved us from a web disaster.</p><br>
<img src="images/avatar_g2.jpg" alt="Avatar" class="w3-left w3-circle w3-margin-right" style="width:80px">
<p><span class="w3-large w3-margin-right">Rebecca Flex.</span> CEO at Company.</p>
<p>No one is better than Jane Doe.</p>
<!-- End About Section -->
</div>
<!-- Footer -->
<footer class="w3-padding-64 bottom w3-center">
<a class="w3-btn w3-round w3-xlarge w3-red"><i class="fa fa-facebook-official w3-hover-opacity"></i></a>
</footer>
<!-- END PAGE CONTENT -->
</div>
</body>
</html>