-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
28 lines (24 loc) · 781 Bytes
/
about.html
File metadata and controls
28 lines (24 loc) · 781 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="https://use.typekit.net/uin5qbm.css">
<title>Xeystroke - Home</title>
</head>
<!--Moved the <header> into the <body> Was it showing up with it being between the <head> and <body>?-->
<body>
<header>
<div class="topnav" id="myTopnav">
<a href="index.html" class="active">Home</a>
<a href="collaborate.html" id="collabButton">Collaborate</a>
<a href="chords.html">Chord Finder</a>
<a href="about.html">About</a>
<a href="profile.html">Profile</a>
<a href="notes.html">Notes</a>
</div>
</header>
<p>yo</p>
</body>
</html>