-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
161 lines (152 loc) · 5.35 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Portfolio</title>
<link rel="shortcut icon" type="image/png" href="media/favicon.png" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.3.1/css/all.css"
integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="css/hover-min.css" />
<link rel="stylesheet" href="css/header.css" />
<link rel="stylesheet" href="css/index.css" />
<link rel="stylesheet" href="css/clouds.css" />
<link rel="stylesheet" href="css/body.css" />
<link rel="stylesheet" href="css/projects.css" />
<link rel="stylesheet" href="css/footer.css" />
<!--Jquery-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
</head>
<body>
<header>
<section class="nav-bar">
<nav class="nav-links">
<a href="media/smith_megan_resume.pdf" target="_blank "
>Resumé
</a>
<a href="#project-title">Projects</a>
<a href="#external-links">About Me</a>
</nav>
</section>
</header>
<section class="content">
<div class="clouds-animate1"></div>
<div class="clouds-animate2"></div>
<div class="statement-grid">
<img src="media/fish_icon.png" width="1800" height="1692" />
<p>
A front-end software and web developer to make life a little easier :)
</p>
</div>
<div class="dark-clouds-grid">
<img
class="dark-cloud"
src="media/clouds_dark/clouds_dark-02.png"
data-paroller-factor="0.3"
data-paroller-type="foreground"
data-paroller-direction="horizontal"
/>
<img
class="dark-cloud"
src="media/clouds_dark/clouds_dark-04.png"
data-paroller-factor="0.1"
data-paroller-type="foreground"
data-paroller-direction="horizontal"
/>
<img
class="dark-cloud"
src="media/clouds_dark/clouds_dark-01.png"
data-paroller-factor="-0.3"
data-paroller-type="foreground"
data-paroller-direction="horizontal"
/>
<img
class="dark-cloud"
src="media/clouds_dark/clouds_dark-06.png"
data-paroller-factor="-0.1"
data-paroller-type="foreground"
data-paroller-direction="horizontal"
/>
<img
class="dark-cloud"
src="media/clouds_dark/clouds_dark-07.png"
data-paroller-factor="-0.1"
data-paroller-type="foreground"
data-paroller-direction="horizontal"
/>
</div>
<div class="projects-wrap">
<div class="project-title" id="project-title">
<h3>LET'S SEE THE WORK</h3>
<i class="fas fa-arrow-down"></i>
</div>
<div class="projects-container">
<div class="proj-box hvr-float">
<div id="talking-selfies"></div>
</div>
<div class="proj-box hvr-float">
<div id="halloween-hidden-object-game"></div>
</div>
<div class="proj-box hvr-float">
<div id="magical-journey"></div>
</div>
<div class="proj-box hvr-float">
<div id="peacock"></div>
</div>
<div class="proj-box hvr-float">
<div id="flux"></div>
</div>
</div>
<h3 class="last-statement">
....and last but not least, this web portfolio!
</h3>
</div>
</section>
<footer>
<svg
class="svg-pattern"
preserveAspectRatio="none"
viewBox="0 0 100 102"
height="75"
width="100%"
>
<path d="M0 0 L50 100 L100 0 Z" fill="#fcfcfc"></path>
</svg>
<div class="aboutme">
<img src="media/sesamayo.png" width="100" height="100" />
<h3>ABOUT ME</h3>
<p>
Hi there! My name is Megan and it's nice to see you here. I'm
currently an Associate Software Enginner at American Greetings, living
in Ohio with my two cats. I have a passion for creating interactive
websites that brings awe and smiles to viewers. Thanks for visiting!
</p>
</div>
<div class="contact">
<h3>Contact</h3>
<p>
Email: megan.cs601[at]gmail.com
</p>
<p>Cell: 585.905.4078</p>
</div>
<div class="external-links" id="external-links">
<a href="https://www.linkedin.com/in/mcsmith601" target="_blank"
><i class="fab fa-linkedin fa-2x"></i
></a>
<a href="https://github.com/mcs2515" target="_blank"
><i class="fab fa-github fa-2x"></i
></a>
<a href="https://www.instagram.com/sesamayo/" target="_blank"
><i class="fab fa-instagram fa-2x"></i
></a>
</div>
</footer>
<script src="js/jquery.paroller.min.js"></script>
<script type="text/javascript" src="js/vanilla-tilt.min.js"></script>
<script type="text/javascript" src="js/index.js"></script>
</body>
</html>