-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (46 loc) · 1.5 KB
/
index.html
File metadata and controls
55 lines (46 loc) · 1.5 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
<!DOCTYPE html>
<html>
<head>
<title>Lambda Times</title>
<link rel="icon" href="./favicon.ico">
<link rel="stylesheet" type="text/css" href="./CSS/index.css" />
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="./components/Tabs/index.js" async></script>
<script src="./components/Header/index.js" async></script>
<script src="./components/Cards/index.js" async></script>
<!-- <script src="./components/Carousel/Carousel.js" async></script> -->
</head>
<body>
<!-- TOP BAR COMPONENT -->
<div class="top-bar">
<div class="container">
<div class="container-left">
<span>TOPICS</span><span>SEARCH</span>
</div>
<div class="container-center">
<span>GENERAL</span><span>BROWNBAG</span><span>RANDOM</span><span>MUSIC</span><span>ANNOUNCEMENTS</span>
</div>
<div class="container-right">
<span>LOG IN</span>
</div>
</div>
</div>
<!-- HEADER COMPONENT, PLACE HEADER HERE -->
<div class="header-container">
</div>
<!-- TABS COMPONENT, PLACE TABS HERE-->
<div class="tabs">
<div class="topics">
<span class="title">TRENDING TOPICS:</span>
</div>
</div>
<!-- STRETCH GOAL: ONLY ATTEMPT THIS WHEN YOU ARE FINISHED WITH THE MAIN OBJECTIVE -->
<!-- CAROUSEL COMPONENT -->
<div class="carousel-container">
</div>
<!-- CARDS CONTAINER, PLACE ARTICLE CARDS HERE -->
<div class="cards-container">
</div>
</body>
</html>