-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
99 lines (82 loc) · 3 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
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
99
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Ryan Walker | Graphic Designer </title>
<!-- CSS -->
<!-- CSS Normalize -->
<link rel="stylesheet" href="css/design/stylesD.css">
</head>
<body>
<div id="banner">
<header role="banner">
<a href="index.html" title="home" id="home">
<h1>Ryan Walker</h1>
<h2>graphic designer</h2>
</a>
<nav role="navigation" class="links">
<ul>
<li><a href="#">contact</a></li>
<li><span id="aboutBtn">about</span></li> <!-- Trigger/Open The Modal -->
</ul>
</nav>
<div id="aboutContent">
<p>Welcome to my website. My name is Ryan Walker and I am a graphic designer working in Cleveland, OH. In this section you will find examples of professional work I have done. Click on any of the images to see more details and examples of the projects. To see some light-hearted personal illustration work I've done click the link below:</p>
<br>
<a href="illustration.html" title="Illustration">illustration</a>
</div>
<!-- ***** The Modal ***** -->
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modalContent">
<span class="close">×</span>
<div id="aboutModalText">
<p>Welcome to my website. My name is Ryan Walker and I am a graphic designer working in Cleveland, OH. In this section you will find examples of professional work I have done. Click on any of the images to see more details and examples of the projects. To see some light-hearted personal illustration work I've done click the link below:</p>
<br>
</div>
</div>
</div>
</header>
</div>
<div id="mainWrapper">
<!-- LABIO DE LIEBRE POSTER -->
<section class="work">
<a href="labio.html" title="Labio de Liebre">
<h3>Labio de Liebre</h3>
<h4>2017</h4>
<img src="images/design/labio.jpg"></img>
</a>
</section>
<!-- CPT SEASON BROCHURE -->
<section class="work">
<h3>Cleveland Public Theatre 2016/2017 Season Brochure</h3>
<h4>2016</h4>
<img src="images/design/cpt_brochure.jpg"></img>
</section>
<!-- DIA DE MUERTOS POSTER -->
<section class="work">
<h3>Die de Muertos</h3>
<h4>2016</h4>
<img src="images/design/dia.jpg"></img>
</section>
<!-- GTK BROCHURE -->
<section class="work">
<h3>Guide to Kulchur Promotional Brochure</h3>
<h4>2014</h4>
<img src="images/design/gtk.jpg"></img>
</section>
<!-- IIA ANNUAL REPORT -->
<section class="work">
<h3>International Institute of Akron 2013 Annual Report</h3>
<h4>2013</h4>
<img src="images/design/iia.jpg"></img>
</section>
<!-- RETURN TO TOP -->
<footer>
<a href="#mainWrapper">return to top</a>
</footer>
</div> <!-- mainWrapper -->
<script src="_javaScript/aboutModal.js"></script>
</body>
</html>