-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIndex.html
103 lines (98 loc) · 2.9 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<script src="MyPortfolioSite.js">
</script>
<link href="Styles.css" rel="Stylesheet">
<meta content="width=device-width, initial-scale=1" name="viewport">
<title>The Portfolio Site for Ely Sanneman as part of Code Louisville front-end coding project</title>
</head>
<body>
<!--Home Section-->
<section class="banner" id="home">
<div class="header-container"></div>
<header class="wrapper clearfix">
<img alt="profile pic" src="./Images/profile_pic.jpg">
<h1 class="title">Ely Sanneman</h1><span class="Home">Front-End Developer</span>
<nav>
<ul>
<li>
<a href="#">Home</a>
</li>
<li>
<a href="#">About</a>
</li>
<li>
<a href="#">Portfolio</a>
</li>
<li>
<a href="#">Contact</a>
</li>
</ul>
</nav>
</header>
</section><br>
<!--About Section-->
<section>
<div class="about">
<h2>About</h2>
<p>Front-End development is a fun and interesting road to take. One that I really enjoy. In addition to
my experience in SQL and C# I am happy to add JavaScript, CSS & HTML to my knowledge base.</p>
</div>
</section>
<header>
<section></section>
</header><br>
<!--Portfolio Section-->
<section>
<div class="portfolio">
<span>Portfolio</span>
<h2>My Projects</h2>
</div>
</section><br>
<!--Contact Section-->
<section>
<h2>Contact</h2>
<address>
<strong>Phone:</strong><a>502.836.4594</a> <strong>Email:</strong> <a
href="mailto:thisguyely@gmail.com">thisguyely@gmail.com</a>
</address>
<!--contact message form-->
<form action="Index.html" class="form" method="post">
<h1>Submit a question or comment</h1>
<fieldset>
<legend>Contact</legend> <label for="name">Name:</label> <input id="name" name="user_name"
type="text">
<label for="email">Email:</label> <input id="email" name="user_email" type="email">
</fieldset>
<fieldset>
<legend>Message</legend>
<label for="Message">Message</label>
<textarea id="message" name="user_message"></textarea>
</fieldset>
<button type="submit">Submit</button>
</form>
</section>
<footer>
<div class="footer_content">
<ul class="social">
<li>
<a
href="https://www.linkedin.com/in/ely-sanneman-mta-a9866193?challengeId=AQGdfiFaty-t8gAAAXKoxSQzHzxiVMKqn64HyyHYSR2B2FlvZuTModc-LJzEfiQXw2lOp3XEPy-dMW2hL8Hd12C_vF1r281Rfw&submissionId=5d0a3611-bacf-1716-c8aa-1aa08402c918">LinkedIn</a>
</li>
<li>
<a href="https://github.com/thisguyEly">GitHub</a>
</li>
<li>
<a href="">Facebook</a>
</li>
</ul>
<br>
<div class="copyright">
©Copyright 2020. All rights Reserved.
</div>
</div>
</footer>
</body>
</html>