-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathguestbook.html
More file actions
33 lines (33 loc) · 985 Bytes
/
guestbook.html
File metadata and controls
33 lines (33 loc) · 985 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link href="styles.css" rel="stylesheet"/>
<title>Devin Taing</title>
</head>
<body>
<header>
<div class="navbar">
<a href="https://devintaing.dev" style="margin-right: 20px;">home</a>
<a href="https://devintaing.dev/projects" style="margin-right: 20px;">projects</a>
<a href="https://devintaing.dev/projects">guestbook</a>
</div>
</header>
<main>
<h1 class="title">guestbook</h1>
<h2 class="subtitle">feel free to leave a message!</h2>
</main>
<footer>
<hr>
<p class="footer-text">
made by devin taing
</p>
<a href="https://github.com/devintaing" style="margin-right: 10px;">
<img src="images/github-logo-dark.png" alt="github logo" width="30" height="30">
</a>
<a href="https://linkedin.com/in/devintaing">
<img src="images/linkedin-logo-dark.png" alt="linkedin logo" width="30" height="30">
</a>
</footer>
</body>
</html>