-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
87 lines (73 loc) · 2.28 KB
/
index.php
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
<!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.html"> Home</a>
<a href = "about.html"> About</a>
<a href = "contact.html"> Contact</a>
</nav>
<br /> <br />
<figure id = "me">
<img src = "/img/Jashmae_B.png" alt "Picture of Jashmae Baculpo." />
</figure>
<main>
<div id = "welcomeText" >
Hello! <br />
<p>
Thank you for visiting my professional portfolio website.
</p>
<p>
I am a Software Engineer working towards obtaining a
</p>
<p>
Bachelors Degree in Computer Science from California State University of Monterey Bay.
</p>
<p>
Feel free to contact me!
</p>
</div>
</main>
<!-- 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>
CST 336: Internet Programming. Spring 2018. Baculpo.
</footer>
<!-- closing footer -->
</body>
<!-- closing body -->
</html>