-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (66 loc) · 2.13 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>GramTube</title>
<meta name="og:title" content="GramTube" />
<meta name="og:url" content="https://tube.wingram.org/" />
<meta name="description" content="Youtube without trash" />
<meta name="og:description" content="Youtube without trash" />
<meta name="og:image" content="https://base.wingram.org/images/logo.png" />
<link
rel="icon"
href="https://base.wingram.org/favicon.ico"
type="image/x-icon"
/>
<link
rel="icon"
href="https://base.wingram.org/images/logo.png"
type="image/png"
/>
<link
rel="apple-touch-icon"
href="https://base.wingram.org/images/logo.png"
/>
<link rel="stylesheet" href="https://base.wingram.org/css/base.css" />
<link rel="stylesheet" href="public/style.css" />
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
</head>
<body>
<div id="root">
<header id="header">
<a href="https://wingram.org">Wingram</a> -
<a href="https://wingram.org/#software">Software</a> -
<a href="https://www.youtube.com/@WingramOrg">Channel</a> -
<a href="https://youtu.be/AOq-fq3vnFY">Created</a>
</header>
<nav>
<a href="/" class="logo">
<img src="https://base.wingram.org/images/logo.png" alt="Logo" />
<span>GramTube</span>
</a>
</nav>
<main>
<section class="branch">
<img
src="https://base.wingram.org/images/logo.png"
alt="Logo Wingram"
/>
<h1>GramTube</h1>
<h2>Youtube without trash</h2>
</section>
<form action="/results" class="search center">
<input
type="search"
name="search_query"
placeholder="Enter Something"
autocomplete="on"
/>
<button type="submit">Search</button>
</form>
</main>
</div>
</body>
</html>