-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplus.html
More file actions
50 lines (45 loc) · 1.47 KB
/
plus.html
File metadata and controls
50 lines (45 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About | NothingButTyler</title>
<link rel="stylesheet" href="style.css">
<script defer src="script.js"></script>
</head>
<body>
<nav class="navbar">
<h1 class="logo">NothingButTyler</h1>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html" class="active">About</a></li>
<li><a href="youtube.html">YouTube</a></li>
<li><a href="plus.html">Plus</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<button class="hamburger" id="hamburger">☰</button>
</nav>
<div class="sidebar" id="sidebar">
<button class="close-btn" id="close-btn">✕</button>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="youtube.html">YouTube</a></li>
<li><a href="plus.html">Plus</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<div id="overlay"></div>
<section class="section">
<h2>NothingButTyler Plus</h2>
<p>Join <strong>NothingButTyler Plus</strong> for exclusive updates, sneak peeks, and behind-the-scenes content!</p>
<form class="plus-form">
<input type="email" placeholder="Enter your email" required>
<button type="submit">Join Plus for Free</button>
</form>
</section>
<footer>
<p>© 2025 NothingButTyler</p>
</footer>
</body>
</html>