-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (54 loc) · 1.67 KB
/
index.html
File metadata and controls
56 lines (54 loc) · 1.67 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Mufeth's Space</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Welcome to Mufeth's Space</h1>
</header>
<main>
<nav>
<input type="radio" name="turn-on-off" id="on">
<label for="on" class="on-hide">Turn On</label>
<input type="radio" name="turn-on-off" id="off">
<label for="off" class="hide off-hide">Turn Off</label>
<input type="radio" name="tab" id="intro">
<label for="intro" class="hide">About ME</label>
<input type="radio" name="tab" id="blog">
<label for="blog" class="hide">Blogs</label>
<input type="radio" name="tab" id="games">
<label for="games" class="hide">Games</label>
<input type="radio" name="tab" id="contact">
<label for="contact" class="hide">Connections</label>
</nav>
<article>
<section class="intro">
<h1>About ME</h1>
<p>Hello, I'm <em>Syed Mufeth!</em> I like to play GAMES and Curious to know how system is designed <3 </p>
<p> Have a GOOD DAY ;)</p>
</section>
<section class="blog">
<h1>Blogs</h1>
</section>
<section class="gaming">
<h1>Gaming</h1>
<p> I play ETS 2, PUBG PC. if you want to play any games with me we can :)</p>
<a href=""> Youtube</a>
<a href="">Twitch</a>
<a href="">Discord Server</a>
</section>
<section Class="contact">
<h1>Connections</h1>
<p> I'm good and nice say Hi at <a href="">Discord</a>, <a href="">Instagram</a></p>
</section>
</article>
</main>
<footer>
<div></div>
<div></div>
</footer>
</body>
</html>