-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
122 lines (101 loc) · 3.23 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
<!DOCTYPE html>
<html>
<!--
First Website
and comment
in html
(comments can span multiple lines)
-->
<!-- This is the head -->
<!-- All styles and javascript go inside the head -->
<head>
<meta charset=”utf-8” />
<title>
Jashmae Baculpo Personal Website
</title>
<style>
body
{
background-color: #80B7BA !important;
}
</style>
<link href = "css/styles.css" rel = "stylesheet" type = "text/css" />
<link href="https://fonts.googleapis.com/css?family=Great+Vibes" rel="stylesheet">
</head>
<!-- closing head -->
<!-- This is the body -->
<!-- This is where we place the content of our website -->
<body>
<header>
<h1>Jashmae Baculpo </h1>
</header>
<nav>
<hr width = "50%"/>
<a href = "index.php"> Home</a>
<a href = "about.html"> About</a>
<a href = "contact.html"> Contact</a>
</nav>
<br /> <br />
<div id = "content">
<table>
<tr id = "table-header">
<td>
<strong>
Programming Language:
</strong>
</td>
<td>
<strong>
Years Experience:
</strong>
</td>
</tr>
<tr class = "table-row">
<td>
C++
</td>
<td>
2
</td>
</tr>
<tr class = "table-row">
<td>
Python
</td>
<td>
2
</td>
</table>
<ul>
<li>
<span class = "hobby">
Video Games: I mostly play games on my laptop like Slime Rancher and Minecraft.
</span>
</li>
<li>
<span class = "hobby">
Music: I listen to a wide variety of music, but I mostly love Pop.
</span>
</li>
<li>
<span class = "hobby">
Programming: I mostly spend around at least an hour a day practicing and leaning languages.
</span>
</li>
</ul>
</div>
<!-- This is the footer -->
<!-- The footer goes inside the body but not always -->
<footer>
<hr>
<p>
<img src="/Portfolio-lab/img/CSUMB-logo.png"></img>
<strong> Disclaimer: </strong>
This is used for academic purposes only.
</p>
Internet Programming. Spring 2018. Baculpo.
</footer>
<!-- closing footer -->
</body>
<!-- closing body -->
</html>