-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfun.html
More file actions
46 lines (43 loc) · 1.51 KB
/
Copy pathfun.html
File metadata and controls
46 lines (43 loc) · 1.51 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
<!DOCTYPE html>
<html>
<!--This is a good website. I feel proud of what i've created here today.-->
<head>
<title>yeet</title>
<link href="./style.css" type="text/css" rel="stylesheet" />
</head>
<body>
<!--The header. in the future I wanna make this dynamic!-->
<div id="header">
<div class="title">
<p class="goodContent"> werbsite</p>
</div>
<div class="topcontent">
<a class="active" href="fun.html">here</a>
<a href="./mexicanpresnotes.txt">notanymore</a>
<a href="otherpage.html">asp.ie</a>
<a href="./buttons.html">pressy pressy</a>
</div>
<span>right now it's <b id="dateTime"></b></span>
<script>document.getElementById("dateTime").innerHTML = Date()</script>
</div>
<div class="bottomContent">
<div class="content">
<p>goooooooooood content. This is <em>very</em> good content.</p>
<img src="./tennisdog.jpg" alt="important" height="213" width="320" title="important" />
</div>
<div class="media">
<fieldset>
<h3 class="title2">jest a regular old form</h3>
<form action="" target="_self" method="GET" autocomplete="off">
heres a heckin form. what do you want from me?<br>
<input type="text" name="aaaaaaaa" maxlength="100" class="text"/>
</br>
<input type="radio" name="e" value="doop" />doop<br />
<input type="radio" name="e" value="foop" />foop<br />
<input type="submit" value="asdfjklgsf" class="coolbutton"/>
</form>
</fieldset>
</div>
</div>
</body>
</html>