-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
93 lines (80 loc) · 3.07 KB
/
contact.html
File metadata and controls
93 lines (80 loc) · 3.07 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
<!DOCTYPE html>
<html>
<head>
<!--Import Google Icon Font-->
<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">
<style>
body {
display: flex;
min-height: 100vh;
flex-direction: column;
}
main {
flex: 1 0 auto;
}
</style>
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('.sidenav').sidenav();
});
</script>
<!--
Colors:
Primary: blue lighten-1 #42a5f5
Secondary: deep-purple lignten-2 #9575cd
-->
</head>
<body>
<header>
<div class="navbar-fixed">
<nav>
<div class="nav-wrapper blue lighten-1">
<a href="#!" class="brand-logo center">Ryan Lapchynski</a>
<a href="#" data-target="mobile-demo" class="sidenav-trigger"><i class="material-icons">menu</i></a>
<ul class="right hide-on-med-and-down">
<li><a href="index.html">Home</a></li>
<li><a href="careergoals.html">Career Goals</a></li>
<li><a href="resume.html">Résumé</a></li>
<li><a href="projects.html">Projects</a></li>
</ul>
</div>
</nav>
</div>
<ul class="sidenav" id="mobile-demo">
<li><a href="index.html">Home</a></li>
<li><a href="careergoals.html">Career Goals</a></li>
<li><a href="resume.html">Résumé</a></li>
<li><a href="projects.html">Projects</a></li>
</ul>
</header>
<main>
<div class="container">
<h1>Contact</h1>
<p class="flow-text">I am Flow Text I am Flow Text I am Flow Text
I am Flow Text I am Flow Text I am Flow Text I am Flow Text I am Flow Text
I am Flow Text I am Flow Text I am Flow Text I am Flow Text I am Flow Text
I am Flow Text I am Flow Text I am Flow Text I am Flow Text I am Flow Text
I am Flow Text I am Flow Text I am Flow Text
I am Flow Text I am Flow Text I am Flow Text I am Flow Text I am Flow Text
I am Flow Text I am Flow Text I am Flow Text I am Flow Text I am Flow Text</p>
</main>
<footer class="page-footer blue lighten-1">
<div class="container">
<div class="row">
<div class="col l6 s12">
<h5 class="white-text">Footer Content</h5>
<p class="grey-text text-lighten-4">You can use rows and columns here to organize your footer content.</p>
</div>
</div>
</div>
<div class="footer-copyright"></div>
</footer>
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
</body>
</html>