-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (41 loc) · 1.37 KB
/
index.html
File metadata and controls
46 lines (41 loc) · 1.37 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width" />
<title>DevScript - Home</title>
<link rel="stylesheet" href="style.css" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Comfortaa&display=swap" rel="stylesheet"></head>
<body>
<div id="header">
<h1 id="DevScript">DevScript</h1>
<nav>
<a href="/index.html">Home</a>
<a href="/about.html">About Us</a>
<a href="/faq.html">FAQ</a>
<a href="/contact.html">Contact</a>
<a href="/credit.html">Credit</a>
</nav>
</div>
<div class="page">
<div class="pageHeader"><h1>DevScript</h1></div>
<div id="homelinks" class="contentBoxSmall">
<div>
<a href="/about.html" class="contentHeader" id="aboutButton"><h2>About Us</h2></a>
</div>
<div>
<a href="/faq.html" class="contentHeader" id="faqButton"><h2>FAQ</h2></a>
</div>
<div>
<a href="/contact.html" class="contentHeader" id="contactButton"><h2>Contact</h2></a>
</div>
<div>
<a href="/credit.html" class="contentHeader" id="creditButton"><h2>Credit</h2></a>
</div>
</div>
<div id="footer"><p>Copyright ©2021, Kate Yoshida, </p></div>
</div>
</body>
</html>