-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
93 lines (83 loc) · 4.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Rubik" rel="stylesheet">
<script src="https://use.fontawesome.com/2bd6cb94a9.js"></script>
<!-- <script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script> -->
</head>
<body>
<nav class="navbar">
<ul>
<li>
<a class="nav-item" href=#about-section> About </a>
</li>
<li>
<a class="nav-item" href=#portfolio-section> Portfolio </a>
</li>
<li>
<a class="nav-item" href=#contact-section> Contact </a>
</li>
</ul>
</nav>
<div id="welcome-section">
<div class="intro-box">
<h1 class="intro"> Hi there.  </h1>
<h1 class="intro"> My name is Sam.  </h1>
<h1 class="intro accent"> I create websites.</h1>
</div>
</div>
<main class="content">
<div id="about-section">
<h1 class="section-head"> About me </h1>
<div class="about-blurb">
<img class="prof-pic" src="sde.jpg" />
<p class="personal-statement">I am energized by bringing knowledge of human needs, motivations, and behaviors together with strategy, design, and technology to create solutions that improve people’s lives. <br/> <br/> I want the work I do to have a lasting impact on those it touches, while also learning, growing, and having fun along the way. <br/> <br/> Said another way, <span class="accent"> I just like to make kickass stuff. </span> </p>
</div>
</div>
<div id="portfolio-section">
<h1 class="section-head"> My work </h1>
<div class="portfolio">
<div class="grid-item">
<h3 class="item-title"> Satoru Iwata Tribute Page </h3>
<img src="iwata_tribute.png" alt="Iwata Tribute Image" class="grid-pic"/>
</div>
<div class="grid-item">
<h3 class="item-title"> Javascript Calculator </h3>
<img src="js_calc.png" alt="Javascript Calculator Image" class="grid-pic"/>
</div>
<div class="grid-item">
<h3 class="item-title"> Product Page - Edison Bros Fish </h3>
<img src="product_page.png" alt="Ebros Image" class="grid-pic"/>
</div>
<div class="grid-item">
<h3 class="item-title"> Survey Form: Sleep Tracker </h3>
<img src="survey_form.png" alt="Survey Form Image" class="grid-pic"/>
</div>
<div class="grid-item">
<h3 class="item-title"> Technical Documentation Page </h3>
<img src="technical_doc.png" alt="Technical Doc Image" class="grid-pic"/>
</div>
<div class="grid-item">
<h3 class="item-title"> Tic Tac Toe Game </h3>
<img src="tic_tac_toe.png" alt="Tic Tac Toe Image" class="grid-pic"/>
</div>
</div>
</div>
<div id="contact-section">
<h1 class="section-head"> How to get in touch </h1>
<div class="contact-box">
<a href = https://www.facebook.com/SDEdison target="_blank"><i class="contact-link fa fa-facebook-square fa-5x"> </i></a>
<a href = https://twitter.com/S_Edison target="_blank"><i class="contact-link fa fa-twitter-square fa-5x"> </i> </a>
<a href = https://github.com/sdedison target="_blank"><i class="contact-link fa fa-github-square fa-5x"> </i> </a>
<a href = https://linkedin.com/in/samuel-edison-50b80a38 target="_blank"><i class="contact-link fa fa-linkedin-square fa-5x"> </i>
<a href= https://www.freecodecamp.org/portfolio/sdedison target="_blank"><i class="contact-link fa fa-free-code-camp fa-5x"> </i> </a>
</div>
</div>
</main>
</body>
</html>