-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (51 loc) · 2.35 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
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Televerse</title>
<link rel="stylesheet" href="/style.css">
<link rel="icon" type="image/x-icon" href="/assets/favicon.svg">
</head>
<body>
<div class="nav-container">
<img src="/assets/logo.svg">
<div class="nav">
<ul>
<li><a href="/credits.html">Credits</a></li>
<li><a href="/app">App</a></li>
<li><a href="/">Home</a></li>
</ul>
</div>
</div>
<div class="content">
<div class="banner">
<h1>Welcome to Televerse</h1>
<h3 style="margin-top: 5px;">The newest TV interface to watch YouTube.</h3>
<button style="margin-top: 10px; padding: 8px 14px; cursor:pointer" class="begin" onclick="location.href = location.href + 'app'">Try Today!</button>
<!-- <p>hi</p> -->
</div>
<div class="aboutus">
<h1>About Televerse</h1>
<div>
<div class="card-container">
<div class="card">
<h2>Why did you make this?</h2>
<p>We made this for the people who want something new than the regular YouTube UI.<br>We also made this for the <a style="margin:0px;" href="https://replit.com/@hugo/Front-end-Jam">Frontend Jam</a> on replit</p>
</div>
<div class="card">
<h2>Who made this?</h2>
<p>This was made by <a style="margin:0px;" href="https://replit.com/@repx">Repx</a> and <a style="margin:0px;" href="https://replit.com/@a747">a747</a> for the <a style="margin:0px;" href="https://replit.com/@hugo/Front-end-Jam">Frontend Jam</a> on replit.</p>
</div>
<div class="card">
<h2>Are you going to continue to update this?</h2>
<p>We might update this on how the project is doing. If not this was a really fun project to make and we have developed new skills to pair with this.</p>
</div>
</div>
</div>
</div>
</div>
<div class="footer">© Zeon 2022.</div>
</body>
</html>