-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportfolio-logos.html
More file actions
63 lines (63 loc) · 1.98 KB
/
portfolio-logos.html
File metadata and controls
63 lines (63 loc) · 1.98 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Portfolio/Levy</title>
<script src="https://code.jquery.com/jquery-3.3.1.js"
integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60="
crossorigin="anonymous">
</script>
<link href="kelseydesign.css" rel="stylesheet">
<link rel="stylesheet" href="css\kelseydesign.css">
<link href="https://fonts.googleapis.com/css?family=Roboto+Slab|Roboto:300,700" rel="stylesheet">
<script type="text/javascript">
$(window).on ('scroll', function () {
if ($(window).scrollTop()){
$('nav').addClass('colored');
}
else {
$('nav').removeClass('colored');
}
});
</script>
</head>
<body>
<div id="homelink"></div>
<header>
<nav>
<div class="navgridtop">
<div class="navlogo">
<a href="https://kelseycreate.com">Kelsey McMahon</a>
</div>
<div class="navlink">
<a href="https://kelseycreate.com/#worklink" class="active">Work</a>
</div>
<div class="navlink">
<a href="https://kelseycreate.com/#skillslink">Skills</a>
</div>
<div class="navlink">
<a href="https://kelseycreate.com/#aboutlink">About</a>
</div>
<div class="navlink">
<a href="https://kelseycreate.com/#contactlink">Contact</a>
</div>
</div>
</nav>
<div class="textbannercolored">
<div style="height:75px;"></div>
<h1>School Mascot & Logo Illustration</h1>
</div>
</header>
<div class="portfoliopage">
<p>These are some samples of original school mascot logo illustrations created for the new schools and current schools with outdated logos.</p>
<img src="Images/Portfolio/KeHS-Lions.jpg"/><br>
<img src="Images/Portfolio/Final Otters.jpg"/><br>
<img src="Images/Portfolio/KDC-Koalas.jpg"/><br><br>
<center><a href="http://kelseycreate.com/#worklink" class="button">View More Work</a></center>
</div>
<footer>
© 2021 Kelsey McMahon
</footer>
</body>
</html>