-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·57 lines (54 loc) · 1.71 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<title>The Harvard Crimson Design</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="application-name" content=" "/>
<link rel="stylesheet" href="assets/css/main.min.css" />
</head>
<body>
<nav class="floating-nav transition">
<h1>The Harvard Crimson <span class="design-text">Design</span></h1>
<ul>
<li><a href="illustration.html">Illustration</a></li>
<li><a href="print.html">Print</a></li>
<li><a href="web.html">Web</a></li>
<li><a href="comp.html">Comp</a></li>
</ul>
</nav>
<div class="wrapper">
<section id="header">
<h1>The Harvard Crimson <span class="design-text">Design</span></h1>
<nav>
<ul id="main-nav" class="main-nav">
<li><a href="illustration.html">Illustration</a></li>
<li><a href="print.html">Print</a></li>
<li><a href="web.html">Web</a></li>
<li><a href="comp.html">Comp</a></li>
</ul>
</nav>
</section>
<section id="intro">
<p>We are a team of 20+ designers who layout a daily newspaper, use visual art to illustrate content, and imagine new online experiences for readers.</p>
<p>Want to join us? <a href="comp.html">Learn more about our comp</a></p>
</section>
<section id="tracks">
<div class="illustration">
<h1>Illustration</h1>
<a href="illustration.html">Learn more ></a>
</div>
<div class="print">
<h1>Print</h1>
<a href="print.html">Learn more ></a>
</div>
<div class="web">
<h1>Web</h1>
<a href="web.html">Learn more ></a>
</div>
</section>
</div>
<script src="./assets/js/vendors.js"></script>
<script src="./assets/js/app.js"></script>
</body>
</html>