-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
143 lines (78 loc) · 3.71 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style1.css">
<meta charset="utf-8">
<title>About Joseph</title>
<style>
.info{
width: 1080px;
}
.background {
background-image: url("myBackground.jpg");
background-repeat: no-repeat;
background-size: cover;
}
.bodycolor {
background-color: rgb(255, 189, 150);
width: 1080px;
height: 100vh;
}
.rlpic {
width: 300px;
height: 170px;
margin:10px;
}
.sideinfo {
clear:both;
margin: auto;
}
</style>
</head>
<body class="background">
<div class="bodycolor">
<img class="Banner" src="myBanner.jpg">
<div class="main-width">
<div class="welcome-side">
<table class="buttontable">
<tr>
<td> <a href="index.html"> <img class="button" src="Home.png"> </a> </td>
</tr>
<tr>
<td> <a href="javascripts.html"> <img class="button" src="javascripts.png"> </a> </td>
</tr>
<tr>
<td> <a href="about.html"> <img class="button" src="about.png"> </a> </td>
</tr>
</table>
</div>
<div class="info">
<h1> About Me </h1>
<p> Hi! My name is Joseph Quijioc, and I am a student at <a href="https://www.uri.edu/"> URI </a> currently studying Computer Science.
</p>
<h2>
Interests
</h2>
<p>
One of my favorite hobbies is gaming, especially <a href="rocketleague.html"> Rocket League </a>. I have played Rocket League for a couple years now and my rank is GC1-GC2.
I also love travelling to different places. The pic in the bottom right is when I found a 7 liter (1.8gal) bottle in the Philippines when I was visiting family.
My love of gaming has recently allowed me to branch out into another hobby, which is pc's and hardware. I first started fiddling with hardware trying to fix
stick drift on my controller, and last fall I made my first PC.
</p>
<div class="sideinfo">
<table class="buttontable">
<tr>
<td> <img class="rlpic" src="rlpic.png"> </td>
<td> <img class="rlpic" src="Hobbypic1.jpg"> </td>
<td> <img class="rlpic" src="Hobbypic2.jpg"> </td>
</tr>
<tr>
<td> <img class="rlpic" src="Quijioc.jpg"> </td>
</tr>
</table>
</div>
</div>
</div>
</div>
</body>
</html>