-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
107 lines (99 loc) · 4.72 KB
/
index.html
File metadata and controls
107 lines (99 loc) · 4.72 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="description" content="Marianna Sternefeld's Personal Website" />
<meta name="keywords" content="Marianna Sternefeld" />
<meta name="author" content="Marianna Sternefeld">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet" href="https://storage.googleapis.com/code.getmdl.io/1.0.6/material.blue_grey-red.min.css">
<script src="https://storage.googleapis.com/code.getmdl.io/1.0.6/material.min.js"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link href='https://fonts.googleapis.com/css?family=Arvo' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Mate' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="style.css">
<title>MSternefeld</title>
</head>
<body>
<header>
<ul class="nav">
<ul>
<li>Marianna E. Sternefeld</li>
<li><a href = "./index.html">Home</a></li>
<li><a href = "./about.html">About Me</a></li>
<li><a href = "./resume.html">Resume/Portfolio</a></li>
<li><a href = "./contact.php">Contact Me</a></li>
<li class="icon">
<a href="javascript:void(0);" onclick="myFunction()">☰</a>
</li>
</ul>
</ul>
</header>
<section>
<table>
<tr>
<td id="tabletext">
<h2>Marianna E. Sternefeld</h2>
<h3>Student • Programmer • Designer</h3>
</td>
<td width="60%"><img src="pictures/mesmaller.png" id="me"></td>
</tr>
</table>
</section>
<div id="wrapper">
<div id="leftcol">
<h4>About Me</h4>
<p>
Hello! I'm Marianna Sternefeld. Currently, I am a second year student at Rochester Institute of Technology studying Software Engineering. Currently I am studying for an immersion in Italian and hopefully work more with web design.
<br />
<br />
<!-- Colored raised button -->
<button class="mdl-button mdl-js-button mdl-button--raised mdl-button--colored" onclick="location.href='./about.html';">
More About Me
</button>
<br />
<br />
</p>
</div><!-- /end #leftcol-->
<div id="center">
<h4>Resume / Portfolio</h4>
<p>
I have been involved in a few personal projects over the years and plan to be involved in more. As my knowledge expands, so will the types of projects I am a part of.
<br />
<br />
<!-- Colored raised button -->
<button class="mdl-button mdl-js-button mdl-button--raised mdl-button--colored" onclick="location.href='./resume.html';">
More
</button>
<br />
<br />
</p>
</div> <!-- /end #content-->
<div id="rightcol">
<h4>Contact Me</h4>
<p>
The easiest way to contact me is by emailing me. I do have other social media accounts you can use to get in touch with me if you wish. Feel free to contact me and I will get back to you as quickly as possible.
<br />
<br />
<!-- Colored raised button -->
<button class="mdl-button mdl-js-button mdl-button--raised mdl-button--colored" onclick="location.href='./contact.php';">
Find Me
</button>
<br />
<br />
</p>
</div> <!-- /end #rightcol-->
<footer>
<section>
Copyright © Marianna Sternefeld. All rights reserved.
<a href="https://github.com/mesternefeld"><img src="pictures/icons/iconmonstr-github-1-24.png" id="social"></a><a href="https://www.linkedin.com/in/mesternefeld"><img src="pictures/icons/iconmonstr-linkedin-4-24.png" id="social"></a><a href="mailto:marianna@sternefeld.com"><img src="pictures/icons/iconmonstr-email-10-24.png" id="social"></a><a href="https://www.facebook.com/MariannaErikaS"><img src="pictures/icons/iconmonstr-facebook-4-24.png" id="social"></a>
</section>
</footer>
</div>
<script>
function myFunction() {
document.getElementsByClassName("nav")[0].classList.toggle("responsive");
}
</script>
</body>
</html>