-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
executable file
·42 lines (35 loc) · 1.01 KB
/
contact.html
File metadata and controls
executable file
·42 lines (35 loc) · 1.01 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
<!DOCTYPE html>
<head>
<title>Contact Me</title>
<link rel="stylesheet" href="css/main.css">
</head>
<html>
<body>
<!-- Navigation bar -->
<div class="navigation">
<div id="doge-logo"><img src="images/doge.jpg"></div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<!-- Start main content -->
<div class="container">
<!-- Main Heading -->
<h1>Contact Me</h1>
<!-- Content Box -->
<div class="box">
<p>Email: <a href="mailto:doge@cornell.edu">doge@cornell.edu</a></p>
<p>Phone: (123) 456-7890</p>
</div>
<!-- Line break for extra space -->
<br>
<!-- Clickable Doge Image -->
<div class="center">
<p>Click the Doge!</p>
<a href="https://www.google.com/search?q=doge&es_sm=91&source=lnms&tbm=isch&sa=X&ved=0CAcQ_AUoAWoVChMIzd6rmvWEyQIVR0MmCh1T9Qp2#"><img src="images/cool_doge.jpg" height="300"></a>
</div>
</div>
</body>
</html>