-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
45 lines (38 loc) · 1.22 KB
/
Copy pathcontact.html
File metadata and controls
45 lines (38 loc) · 1.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./main_style.css" />
</head>
<body>
<a href="./Lab1.html">Home </a><a href="./about.html">About </a><a href="./contact.html">Contact</a><br>
<br>
<div class="contact">
<h1>Contact Us!</h2>
<h2> Emails</h2>
<a href="mailto:adrenteria@csumb.edu">
<h5> adrenteria@csumb.edu </h5>
</a>
<a href="mailto:auphipps@csumb.edu">
<h5> auphipps@csumb.edu </h5>
</a>
<h2> Phone Numbers </h2>
<a href="tel:(555)-555-5555">
<h5> (555)-555-5555 </h5>
</a>
<a href="tel:(123)-456-7890">
<h5> (123)-456-7890 </h5>
</a>
</div>
</body>
<footer>
<p>
CST336 Internet Programming. 20XX Phipps, Renteria<br>
<b>Disclaimer: </b> The information in this webpage is ALL REAL.<br>
It is used for academic purposes only.
</p>
<img src="./img/csumb logo.jpg" alt="CSUMB Logo" width="200" height="100" />
</footer>
</html>