-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
53 lines (44 loc) · 1.59 KB
/
about.html
File metadata and controls
53 lines (44 loc) · 1.59 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>About Me Page</title>
<link rel="stylesheet" type="text/css" href="style.css">
<style>
body {
background-image: url('myBackground.jpg');
background-repet: no-repeat;
background-attachment: fixed;
background-size: cover;
}
#nick-jpg {
float: left;
}
</style>
</head>
<body>
<img src="mybanner.jpg">
<table id="nav-table">
<thead>
<tr>
<th id="nav-td"><a href="https://np756.github.io/index.html"><img src="home.png"</a></th>
<th id="nav-td"><a href="https://np756.github.io/javascripts.html"><img src="javascripts.png"</a></th>
<th id="nav-td"><a href="https://np756.github.io/apps.html"><img src="apps.png"</a></th>
<th id="nav-td"><a href="https://np756.github.io/about.html"><img src="about.png"</a></th>
<th id="nav-td"><a href="https://np756.github.io/finalproject.html"><img src="FinalProject.png"</a></th>
</tr>
</thead>
</table>
<h1>About Me Page</h1>
<p>
Hi, I'm Nick Plamondon! I'm a softmore from Woonsocket, Rhode Island. <br>
The plan is to major in Computer science here at URI.<br>
My favorite people are my dog, Maverick, and my parents (in that order). <br>
My favorite video game of all time is Red Dead Redemption 2 and my favorite movie is Alien. <br>
</p>
<img id="nick-jpg" src="nick.jpg" height="250">
<p>
This is me and my dog
</p>
</body>
</html>