-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·98 lines (80 loc) · 2.82 KB
/
index.html
File metadata and controls
executable file
·98 lines (80 loc) · 2.82 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
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="styles.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>VCD Club at EWU</title>
</head>
<!--Wendy Shaw, credit for gradient text throughout as well-->
<header>
<div id="navback">
</div>
<nav>
<a id="navlink" href="#about">About</a>
<a id="navlink" href="#"><img id="logo" src="assets/vcdc-color.png" alt="VCD Club"></a>
<a id="navlink" href="#gallery">Gallery</a>
</nav>
<div id="space"></div>
<div id="heading">
<h1>VCD Club</h1>
<p id="subtitle">Visual Communication Design at Eastern Washington University</p>
</div>
</header>
<!--Danielle Flinn, credit also for media query and blend mode in header-->
<section id="about">
<div id="about-wrapper">
<div>
<h2> About </h2>
<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Consequatur
molestiae accusantium ut voluptatibus illum vitae laborum? Sapiente
error, tenetur dolores tempore, magni vero, distinctio nisi
reprehenderit quas temporibus perferendis laudantium.</p>
<br>
<p>Check us out on social media and slack!</p>
</div>
<div id="social-nav">
<a href="https://www.instagram.com/ewu.design/"><img src="assets/icon02.png" alt="instagram-icon"></a>
<a href="https://www.facebook.com/VCDClub/"><img src="assets/icon03.png" alt="facebook-icon"></a>
<a href="https://ewudesignclub.slack.com"><img src="assets/icon01.png" alt="slack-icon"></a>
</div>
</div>
<img id="group-pic" src="assets/group-pic.jpg">
</section>
<section id="gallery">
<h2 id="gheader"> Gallery </h2>
<div class="grid">
<div id ="cell-1">
</div>
<div id ="cell-2">
</div>
<div id ="cell-3">
</div>
<div id="cell-4">
</div>
<div id ="cell-5">
</div>
<div id="cell-6">
</div>
<div id ="cell-7">
</div>
<div id ="cell-8">
</div>
</div>
</section>
<!--Whitney Bolar-->
<footer class="whole-footer">
<div class="whole-content">
<div id="top-content">
<a href="#"><h4> About </h4></a>
<a href="#"><h4> Home </h4></a>
<a href="#"><h4> Interviews </h4></a>
<a href="#"><h4> Student Info </h4></a>
<a href="#"><h4> Contacts </h4></a>
</div>
<div id="ruler"></div>
<p id="bottom-content"> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. </p>
</div>
</footer>
</html>