-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (39 loc) · 1.07 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Home - OurTube</title>
<link href="/navbar.css" rel="stylesheet" type="text/css" />
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="navbar">
<a href="/" class="item">
Home
</a>
<a href="/feed" class="item">
Latest
</a>
<a href="/upload" class="item">
Upload
</a>
<a href="/login" class="item pushRight">
Login
</a>
<a href="/signup" class="item">
Sign up
</a>
</div>
<center>
<div style="font-weight:900;font-size:50pt;font-stretch:expanded;">We believe in free speech.</div>
<div style="font-size:30pt;">No ads. No drastic changes. Free.</div>
<br>
<br>
<a href="/upload" class="ctamain">Upload</a>
<a href="/feed" class="ctasecond">Watch Videos</a>
<a id="signOutBtn" style="display:none;" href="javascript:void(0);" class="ctasecond">Sign Out</a>
</center>
<script type="module" src="script.js"></script>
</body>
</html>