This repository was archived by the owner on Oct 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnews.html
40 lines (34 loc) · 1.38 KB
/
news.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
<!DOCTYPE html>
<html>
<head>
<title>News</title>
<link rel="stylesheet" type="text/css" href="SCSS/main.css"/>
</head>
<body>
<div class="header">
<a href="index.html" class="logo">Title</a>
<p class="header_blurb">This is a short description of the site/podcast. Tagline!</p>
</div>
<div class="sidebar">
<div class="sidebar-divider"> </div>
<a href="index.html" class="main-button">Home</a>
<div class="sidebar-divider"> </div>
<a href="about.html" class="main-button">About</a>
<div class="sidebar-divider"> </div>
<a href="archive.html" class="main-button">Archive</a>
<div class="sidebar-divider"> </div>
<a href="news.html" class="main-button">News</a>
<div class="sidebar-divider"> </div>
<a href="extras.html" class="main-button">Extras</a>
<div class="sidebar-divider"> </div>
<a href="google.com" target="_blank" class="social-button"> <img src="Images/Facebook.png"/></a>
<a href="google.com" target="_blank" class="social-button"> <img src="Images/Tumblr.png"/></a>
<a href="google.com" target="_blank" class="social-button"> <img src="Images/Twitter.png"/></a>
</div>
<div class="content">
<a href = "#">Back to Top</a>
</div>
<script src="jquery.min.js"></script>
<script src="app.js"></script>
</body>
</html>