-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
71 lines (56 loc) · 1.86 KB
/
contact.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
<!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">
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLScoaClJrSKMzbjjhPWQWVh6_RYFpsW8_tCctD7KI48N-i2gXA/viewform?embedded=true" width="760" height="500" frameborder="0" marginheight="0" marginwidth="0">Loading...</iframe>
</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>