-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomepage.html
82 lines (70 loc) · 2.46 KB
/
homepage.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>WS Media</title>
<meta name="description" content=" About The WS Media Team">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="/images/favicon.png">
<link rel="stylesheet" href="home.css">
<link rel="stylesheet" href="navbar.css">
<link rel="stylesheet" href="formats.css">
</head>
<body>
<header class="header">
<nav class="nav">
<a href="homepage.html" class="title">
<img src="/images/logo.png">
</a>
<div class="links">
<a href="mission.html">Our Mission |</a>
<a href="build.html">What We Build |</a>
<a href="who.html">Who We Are</a>
</div>
</nav>
<div class="second">
<hr>
</div>
</header>
<main class="content">
<div class="options">
<div class="option">
<a href="mission.html">
<img class="image" src="images/mission.png" alt="Mission">
<h1>Our Mission</h1>
</a>
<br>
</div>
<div class="option">
<a href="build.html">
<img class="image" src="images/build.png" alt="Build">
<h1>What We Build</h1>
</a>
<br>
</div>
<div class="option">
<a href="who.html">
<img class="image" id="oversize-image" src="images/who.png" alt="Who">
<h1>Who We Are</h1>
</a>
</div>
</div>
</main>
<footer>
<nav class="nav">
<div class="links">
<a href="homepage.html" class="title">
<img src="/images/logo.png">
</a>
</div>
</nav>
<div class="container">
<div class="links">
<a href="mission.html">Our Mission |</a>
<a href="build.html">What We Build |</a>
<a href="who.html">Who We Are</a>
</div>
</div>
</footer>
</body>
</html>