-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainPage.html
More file actions
76 lines (76 loc) · 4.66 KB
/
Copy pathMainPage.html
File metadata and controls
76 lines (76 loc) · 4.66 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
<!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">
<base href="../MainPage.html" target="_blank">
<title>Main Page</title>
</head>
<body>
<div class="main">
<header>
<h1>HTML ONLY WEBSITE</h1>
<p><a href="#Navigation">Click here to skip the random stuff and go directly to the part where you can get a navigation to the rest of the website</a></p>
</header>
<hr>
<section>
<nav>
<h3>You Can use the links below to explore the page on your own.</h3>
<ul>
<li><a href="Pages/WhyPage.html">WHY</a></li>
<li><a href="Pages/WhatPage.html">WHAT</a></li>
<li><a href="Pages/AllTags.html">ALL TAGS</a></li>
<li><a href="Pages/WhatNext.html">WHAT NEXT</a></li>
<li><a href="Pages/Links.html">LINKS</a></li>
</ul>
<hr>
</nav>
<div class="table">
<table>
<caption>just a random table</caption>
<thead>
<tr>
<th>table</th>
</tr>
</thead>
<colgroup>
<col span="2">
</colgroup>
<tbody>
<tr>
<td><img src="Media/SantaClause.jpg" alt="Santa Clause" width="425px" ></td>
<td><img src="Media/GhostRider(Marked).jpg" alt="Ghost Rider"width="425px"></td>
<td><img src="Media/Grimmjow.jpg" alt="Grimmjow" width="425px"></td>
</tr>
</tbody>
<tfoot>
<tr>
<td>Random Data</td>
<td>Another Random Data</td>
</tr>
</tfoot>
</table>
</div>
<hr>
<div class="content">
<p>The above 3 images have no specific purpose than to take up space to make this website look more filled. This was not originally the plan when i was making the design for the website on my notebook, i changed it because the previous design required a lot of css and i want this to be an HTML only website, hence the name of the website.</p>
<p>p.s. i made those pictures myself using reference images ofcourse, but yes those are mine.</p>
<hr>
<p>Yes i made the design for this webiste on my notebook before making it. Check my github for images of the notebook.</p>
<hr>
<h1 id="Navigation">Navigation</h1>
<h2>This is the Navigation section where you can find explanation about the pages if you want that.</h2>
<p><a href="MainPage.html"><b>The Main Page</b></a> - that's the page we are on right now, there's not much on it and you probably won't need a link for it, but <a href="MainPage.html">here</a> is one anyways.</p>
<p><a href="Pages/WhyPage.html"><b>The Why Page</b></a> - This is where i explain why i made this website in the first place, even tho there is not much on it. You can read it if you want, it's kinda cool ngl.</p>
<p><a href="Pages/WhatPage.html"><b>The What Page</b></a> - This is where i explain exactly what this website is......spoiler alert....it's an HTML only website, but you can find an overexplained version of it on that page.</p>
<h4><em>here comes the good stuff and probably the only usefull stuff</em></h4>
<p><a href="Pages/AllTags.html"><b>The All Tags Page</b></a> - This page has all the non-depricated html tags that i could find, feel free to use it as a reference if you need it.</p>
<p><a href="Pages/WhatNext.html"><b>The What Next Page</b></a> - This page has a small note on what i'm gonna do next with this website after i'm done making it.</p>
</div>
<hr>
</section>
<footer>© 2023 HTML only Website <span class="separator">|</span> <a href="https://github.com/N1-San">GITHUB</a></footer>
</div>
</body>
</html>