-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (33 loc) · 1.02 KB
/
index.html
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">
<title>Jia Song</title>
<script src="scripts/modernizr.custom.38362.js"></script>
<link rel="stylesheet" media="screen" href="styles/basic.css" />
</head>
<body>
<header>
<img src="images/logo.jpg" alt="Jia Song" />
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="photos.html">Photos</a></li>
<li><a href="live.html">Live</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<article>
<h1>Welcome</h1>
<p id="intro">Welcome to the official website of Jia Song.
Here, you can <a href="about.html">learn more about the band</a>,
view <a href="photos.html">photos of the band</a>,
find out about <a href="live.html">tour dates</a>
and <a href="contact.html">get in touch with the band</a>.
</p>
</article>
<script src="scripts/global.js"></script>
</body>
</html>