-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·123 lines (120 loc) · 4.83 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Nomi Vos | Web Developer</title>
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/normalize.css">
<link href="https://fonts.googleapis.com/css?family=Alice|Raleway:400,700|Sacramento" rel="stylesheet">
</head>
<body>
<!--======================
Header Section
=========================-->
<header>
<div class="logo"><img src="img/logo.png" alt="logo"></div>
<nav>
<ul class="nav-menu">
<li><a href="#about">About</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#work">Work</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<div class="tag">
<h2>Web Development & Design</h2>
</div>
</header>
<!--========================
About Section
============================-->
<section id="about">
<h3>About</h3>
<br>
<p>Hi! My name is Nomi Vos!</p>
<p>I'm a Junior Web Developer and a dabbler of all things creative</p>
<p>I gained my tech skills through the Makers Academy remote online bootcamp. Their curriculum is project-based with an emphasis on test-driven development, object-oriented programming, pair programming and agile practices.</p>
<p>I gained valuable experience working remotely with a cohort of people from 10 different countries using Github, Slack, Zoom and other remote technologies.</p>
<p>I have continued my learning through other courses, including SkillCrush and FreeCodeCamp, and by working on projects.</p>
<p>Check out my Resume and CV!</p>
<div class="bottom">
<div class="half">
<a href="https://s3.amazonaws.com/imagestoragenomi/nomi_resume.pdf" ><img src="img/resume_sqr.svg" target="_blank" class="about-item" alt="resume" style=""></a>
</div>
<div class="half">
<a href="https://github.com/nomi811/CV"><img src="img/CV.jpg" target="_blank" class="about-item" style=""></a>
</div>
</div>
</section>
<!--=============================
Skills Section
===============================-->
<section id="skills">
<h3>Skills</h3>
<br>
<img src="img/red-arrow-icons.png" alt="red arrow with icons">
</section>
<!--===========================
Work Section
=============================-->
<section id="work">
<h3>Work</h3>
<br>
<div class="thirds">
<a href="https://horse-show-app.herokuapp.com/"><img src="img/horse_show_connection1.png" alt="horse show connection website" target="_blank"></a>
</div>
<div class="thirds">
<a href="https://github.com/joseck0510/meal_planner"><img src="img/mealplanner_sqr.jpg" alt="meal planner website" target="_blank"></a>
</div>
<div class="thirds">
<a href="https://nomivos.herokuapp.com"><img src="img/website.png" alt="my website" target="_blank"></a>
</div>
</section>
<!--========================
Footer Section
==========================-->
<section id="contact">
<footer>
<!--========================
Grabber Section
===========================-->
<div class="two-thirds">
<div class="grabber">
<h3>I got this</h3>
<p>Daydream with me......</p>
<p>Your potential customer is getting online to do a search. They find your website. Your website strikes a chord with them. It speaks to them. They have no trouble navigating your site. Within minutes your potential customer transforms into an actual customer. A happy customer. A satisfied customer. A repeat customer.</p>
<p>Creating and maintaining a website is a key component to any good marketing strategy.</p>
<p><span>I create websites. I can turn your daydream into reality.</span></p>
</div>
<div class="social">
<a href="https://www.linkedin.com/in/nomi-vos-097aa082"><img src="img/linkedin-icon-red.svg" alt="linkedin" target="_blank"></a>
<a href="https://github.com/nomi811"><img src="img/github-icon-1-red.svg" alt="github"></a>
</div>
<div class="copyright">
<p>©2018 Nomi Vos</p>
</div>
</div>
<!--=========================
Contact Section
===========================-->
<div class="thirds">
<div class="contact">
<h3>Get in touch</h3>
<form action="">
<div class="form-group">
<input type="text" class="form-control" name="name" placeholder="name">
</div>
<div class="form-group">
<input type="text" class="form-control" name="email" placeholder="email">
</div>
<div class="form-group">
<textarea class="form-control" name="message" rows="5" placeholder="message"></textarea>
</div>
</form>
<div class="text-center"><button type="submit">Send Message</button></div>
</div>
</div>
</footer>
</section>
</body>
</html>