-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
54 lines (50 loc) · 1.47 KB
/
about.html
File metadata and controls
54 lines (50 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
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<br>
<a href="./Lab1.html">Home </a><a href="./about.html">About </a><a href="./contact.html">Contact</a><br>
<br>
<table>
<thead>
<tr>
<th> Programming Languages</th>
<th> Years Experience</th>
</tr>
</thead>
<tbody>
<tr>
<td> C++ </td>
<td> 2 </td>
</tr>
<tr>
<td> Java </td>
<td> 2 </td>
</tr>
<tr>
<td> Python </td>
<td> 2 </td>
</tr>
</tbody>
</table>
<h3>Our Common Hobbies</h3>
<ul>
<li>Video Games: Our favorite games include Pokemon, Overwatch, and Rainbow Six Siege</li>
<li>Movies: Our favorite recently watched movie was Marty Supreme, ping pong.</li>
<li>Programming: We are both semi-new to programming, learning HTML, Swift, Docker, React</li>
</ul>
<br>
</body>
<footer>
<p>
CST336 Internet Programming. 20XX Phipps, Renteria<br>
<b>Disclaimer: </b> The information in this webpage is ALL REAL.<br>
It is used for academic purposes only.
</p>
<img src = "./img/csumb logo.jpg" alt = "CSUMB Logo" width="200" height="100"/>
</footer>
</html>