-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.html
More file actions
50 lines (40 loc) · 1.08 KB
/
template.html
File metadata and controls
50 lines (40 loc) · 1.08 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
46
47
48
49
50
<!DOCTYPE html>
<!--
Author: Leslie Espino
File Name: template.html
Date: 12/2/2025
Purpose: template layout for all bioSite pages
-->
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lora:wght@400;700&display=swap" rel="stylesheet">
<!-- CSS link -->
<link rel="stylesheet" href="css/styles.css">
<title>bioSite Template</title>
</head>
<body>
<header>
<h1>bioSite</h1>
<p>A personal biography project</p>
</header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Gallery</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<main>
<!-- Page content will go here on each specific page -->
</main>
<footer>
<p>© 2025 bioSite Project by Leslie Espino</p>
</footer>
</body>
</html>