-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgraphic.html
118 lines (111 loc) · 3.55 KB
/
graphic.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en">
<head>
<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>Lynn Mitchell</title>
<link rel="stylesheet" href="css/style.css" />
<link rel="shortcut icon" type="image/x-icon" href="img/favicon.ico"/>
</head>
<body>
<!-- WORK IN PROGRESS -->
<img
src="img/menu.svg"
alt="menu toggle"
class="menu__toggle"
id="menuToggleHamburger"
/>
<img
src="img/clear.svg"
alt="menu toggle clear"
class="menu__toggle"
id="menuToggleX"
/>
<nav>
<ul>
<a href="index.html" class="nav-link" onclick="closeNav()"
><li>Home</li></a
>
<a href="index.html#about__me" class="nav-link" onclick="closeNav()"
><li>About</li></a
>
<a href="index.html#portfolio" class="nav-link" onclick="closeNav()"
><li>Portfolio</li></a
>
<a href="index.html#contact" class="nav-link" onclick="closeNav()"
><li>Contact</li></a
>
</ul>
</nav>
<h1>PAGE UNDER CONSTRUCTION</h1>
<p>
If for some reason you have found this page it is not ready to be viewed
and should not be any links to this page.
</p>
<main>
<!-- PORTFOLIO -->
<article id="graphic__portfolio">
<!-- Book Covers -->
<section id="book__covers__info">
<h3>Stephen King Book Covers</h3>
<p>
Here I have designed book covers for the Stephen King novels: The
Shining, Under The Dome, and IT.
</p>
</section>
<!-- Logos -->
<section id="all__logos__info">
<h3>All Logos</h3>
<p>
This shows all of the logos I created during my time at the Art
Institute of TN - Nashville
</p>
</section>
<!-- Mr. Bones -->
<section id="mrbones__info">
<h3>Mr. Bones Chophouse</h3>
<p>
Mr. Bones Chophouse is a project where I had to come up with a logo,
business card, stationary, website, and more.
</p>
</section>
<!-- Gorillaz -->
<section id="gorillaz__info">
<h3>Gorillaz Demon Days Poster</h3>
<p>
This is a poster for a Gorillaz concert for their album Demon Days.
</p>
</section>
<!-- Code Now -->
<section id="code__now__info">
<h3>Code Now</h3>
<p>
Code Now is a nonprofit that teaches high school kids how to code. I
have created a new logo for the non-profit as well as designed a
business card and stationary for them
</p>
</section>
</article>
</main>
<footer>
<div class="footer__icons">
<a href="https://www.linkedin.com/in/lynn-mitchell-4b1734118/"
><img
src="img/iconfinder_linkedin_circle_black_107159.png"
alt="Linked In"
/></a>
<a href="https://github.com/lynn7mitchell"
><img src="img/iconfinder_github_circle_black_107161.png" alt="Github"
/></a>
</div>
<p>
This website was created with <strong>HTML</strong>,
<strong>CSS</strong>, <strong>SASS</strong>, and
<strong>JavaScript</strong> without any frameworks or libraries
</p>
<div class="copyright"><p>© Copyright 2019</p></div>
</footer>
<script src="js/script.js"></script>
</body>
</html>