-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (74 loc) · 2.95 KB
/
Copy pathindex.html
File metadata and controls
86 lines (74 loc) · 2.95 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Turrnut</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="icon" type="image/x-icon" href="icon/turrnut.ico">
</head>
<body>
<!-- Navbar -->
<nav class="navbar">
<a href="" class="logo">
<img src="icon/turrnut.png" alt="Logo Icon" class="logo-icon">
Turrnut
</a>
<button class="hamburger" id="hamburger">
<span></span>
<span></span>
<span></span>
</button>
<ul class="nav-links" id="nav-links">
<li><a href="">Home</a></li>
<li><a href="https://www.youtube.com/@turrnut" target="_blank">YouTube</a></li>
<li><a href="./blogs/">Articles</a></li>
<li><a href="./turrnesian/">Turrnesian</a></li>
<li><a href="./about/">About</a></li>
</ul>
</nav>
<!-- Background Video -->
<div id="backgroundvideo">
<video autoplay muted loop>
<source src="icon/flagwave.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
<!-- Title Text -->
<div id="title_text">Turrnut</div>
<div id="title_text_small">This is the official website of YouTuber and writer Turrnut. Here you can find stuff that he is working on.<br> <br>Check these things out:</div>
<!-- Service List -->
<div id="service_list">
<a href="https://www.youtube.com/@turrnut" target="_blank" id="service">
<img src="img/ripoffyoutube.png" alt="Official Channel">
<p>Official Channel</p>
</a>
<a href="./blogs/" id="service">
<img src="img/blogs.png" alt="Blogs">
<p>Blogs</p>
</a>
<a href="./turrnesian" id="service">
<img src="img/language.png" alt="Turrnesian">
<p>Turrnesian Language</p>
</a>
<a href="./about" id="service">
<img src="img/info.png" alt="Who is Turrnut?">
<p>Who is Turrnut?</p>
</a>
</div>
<div id="title_text_small">Latest Video</div>
<!-- id yt_vid -->
<iframe id="yt_vid"width="1250" height="703" src="https://www.youtube.com/embed/WUf-bYp5k_c" title="The history of taxes" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<div id="title_text_small"><a href="blogs/3/">Latest Article: Gun control in the United States</a></div>
<a href="blogs/3/"><img class="align_center" src="blogs/3/img/3-1.png" alt="Guns."></a>
<br/>
<br/>
<br/>
<br/>
<!-- Footer -->
<footer class="footer">
Copyright (c) Turrnut 2025
</footer>
<script src="js/script.js"></script>
</body>
</html>