-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
63 lines (51 loc) · 1.51 KB
/
about.html
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
<!--
GUI Assignment: Creating Your First Web Page
Joshua Hou
9/7/21
A simple webpage with navigation linking to my github and a about me.
In this webpage, a table, random num script, and image is used.
There is also an alert.
<link> refers to my css style sheet located in css folder.
<script> runs my scripts file script.js
<div> I created a container for all tags nested in there for my css.
<nav> is my navigation menu.
<img> files points to img folder
<footer> I created my table in there because it seemed like a good UI.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Joshua Hou</title>
<link rel="stylesheet" href="css/index.css">
<script></script>
</head>
<body>
<div class="container" onload='random()'>
<h1>About Me</h1>
<nav class="nav">
<a href="index.html">Home</a>
<a class='aboutme' href="about.html">About Me</a>
<a target="_blank" rel="noopener noreferrer" href="https://github.com/hourzn">GitHub</a>
</nav>
<p>
Hi Guys, This is me.
<p>
<img src="imgs/png.png" alt="Josh Image">
</div>
<footer>
<img src='https://www.w3.org/Icons/valid-html20.png'>
<img src='http://www.w3.org/Icons/valid-css.png'>
<table>
<tr>
<th>Vistor Count</th>
</tr>
<tr>
<td id='randomnum'>
7
</td>
</tr>
</table>
</footer>
</body>
</html>