-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
88 lines (82 loc) · 3.16 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Katie Bobbe</title>
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<script src="./script.js"></script>
</head>
<body>
<!-- <header> -->
<nav>
<div class="nav-wrapper">
<a href="index.html" class="brand-logo">Katie Bobbe</a>
<ul id="nav-mobile" class="right hide-on-med-and-down">
<li><a href="projects.html">Projects</a></li>
<li><a href="awards.html">Awards</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="https://github.com/kcbobbe"><i class="fab fa-github"></i></a></li>
<li><a href="https://www.linkedin.com/in/kcbobbe/"><i class="fab fa-linkedin"></i></a></li>
</ul>
</div>
</nav>
<!-- </header> -->
<main>
<div class="container">
wip 2.24
</div>
</main>
<footer class="page-footer">
<div class="container">
<div class="row">
<div class="col s6">
<h5 class="white-text">Contact</h5>
<div class="row">
<div class="col">
<a href="https://github.com/kcbobbe"><i class="fab fa-github" style="color:white; font-size:20px"></i></a>
</div>
<div class="col">
<a href="https://www.linkedin.com/in/kcbobbe/"><i class="fab fa-linkedin"
style="color:white; font-size:20px"></i></a>
</div>
<div class="col">
<a href="https://www.linkedin.com/in/kcbobbe/"><i class="material-icons"
style="color:white; font-size:20px">email</i></a>
</div>
<div class="col">
<a href="https://www.linkedin.com/in/kcbobbe/"><i class="material-icons"
style="color:white; font-size:20px">phone</i></a>
</div>
</div>
<!-- <p class="grey-text text-lighten-4">You can use rows and columns here to organize your footer content.</p> -->
</div>
<div class="col s6">
<h5 class="white-text">Projects</h5>
<ul>
<li>
<a href="#" style="color:lightpink">BandiFi</a>
</li>
<li>
<a href="#" style="color:lightpink">Q-seum</a>
</li>
<li>
<a href="#" style="color:lightpink">Weather Dashboard</a>
</li>
<li>
<a href="#" style="color:lightpink">Memory Cards</a>
</li>
</ul>
</div>
</div>
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
</body>
</html>