-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
167 lines (161 loc) · 6.17 KB
/
Copy pathindex.html
File metadata and controls
167 lines (161 loc) · 6.17 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
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
162
163
164
165
166
167
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jeff Young Portfolio</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link href="https://fonts.google.com/share?selection.family=Jost:wght@100;200;300;400;500;600;700;800;900" rel="stylesheet">
</head>
<body>
<!-- Section 1 -->
<div class="container">
<section class="section-1 center" id="section-1">
<h1 class="section-heading section-1-heading">
Web Developer
</h1>
<img src="./images/Jeff Profile.jpg" alt="Jeff Young" class="person-img"/>
<h3 class = "person-name">Jeff Young</h3>
<a href="#section-3" class="section-1-btn">Projects</a>
</section>
<!-- End of Section 1 -->
<!-- Navbar -->
<nav class="navbar center">
<a href="#section-1" class="navbar-link">Home</a>
<a href="#section-2" class="navbar-link">About</a>
<a href="#section-3" class="navbar-link">Portfolio</a>
<a href="#section-4" class="navbar-link">Contact</a>
</nav>
<!-- End of Navbar -->
<!-- Section 2 -->
<section class="section-2" id="section-2">
<h1 class="section-heading section-2-heading">About Me</h1>
<div class="progress-bars-wrapper">
<div class="progress-bar">
<p class="progress-text">
HTML
<span>97</span>%
</p>
<div class="progress-percent"></div>
</div>
<div class="progress-bar">
<p class="progress-text">
CSS
<span>89</span>%
</p>
<div class="progress-percent"></div>
</div>
<div class="progress-bar">
<p class="progress-text">
Javascript
<span>85</span>%
</p>
<div class="progress-percent"></div>
</div>
<div class="progress-bar">
<p class="progress-text">
Node.js
<span>75</span>%
</p>
<div class="progress-percent"></div>
</div>
<div class="progress-bar">
<p class="progress-text">
MySQL
<span>80</span>%
</p>
<div class="progress-percent"></div>
</div>
</div>
<div class="services">
<div class="service">
<i class="far fa-lightbulb"></i>
<h2 class="service-heading">Creative
</h2>
</div>
<div class="service">
<i class="fas fa-cut"></i>
<h2 class="service-heading">Problem Solving
</h2>
</div>
<div class="service">
<i class="fas fa-tachometer-alt"></i>
<h2 class="service-heading">Fast
</h2>
</div>
<div class="service">
<i class="fas fa-rocket"></i>
<h2 class="service-heading">Dynamic
</h2>
</div>
</div>
</section>
<!-- End of Section 2 -->
<!-- Section 3 -->
<section class="section-3" id="section-3">
<h1 class="section-heading section-3-heading">My Projects</h1>
<div class="projects-wrapper center">
<div class="project">
<div class="project-text">
<h2 class="project-name">GeekSeek - Dating Site</h2>
<h4 class="class-technologies">HTML/CSS/JS/NodeJS/MySQL/Bulma</h4>
</div>
<img src="./images/GeekSeek.png" class="project-img"/>
<a href="https://infinite-ravine-51041.herokuapp.com/" class="project-link" target="_blank">Go to Site</a>
</div>
<div class="project">
<div class="project-text">
<h2 class="project-name">Node.js Employee Tracking System - Back-End</h2>
<h4 class="class-technologies">JS/NodeJS/MySQL</h4>
</div>
<img src="./images/employee tracker .jpg" class="project-img"/>
<a href="https://github.com/JMYoung93/Employee-Tracker" class="project-link" target="_blank">Go to Site</a>
</div>
<div class="project">
<div class="project-text">
<h2 class="project-name">Hyper-Responsive Front-End Site</h2>
<h4 class="class-technologies">HTML/CSS/JSL</h4>
</div>
<img src="./images/See-Food.jpg" class="project-img"/>
<a href="https://jmyoung93.github.io/See-Food/" class="project-link" target="_blank">Go to Site</a>
</div>
<div class="project">
<div class="project-text">
<h2 class="project-name">Day Planner - Moment.js</h2>
<h4 class="class-technologies">HTML/CSS/JS/MomentJS</h4>
</div>
<img src="./images/Day-Planner.jpg" class="project-img"/>
<a href="https://jmyoung93.github.io/Day-Planner/" class="project-link" target="_blank">Go to Site</a>
</div>
<div class="project">
<div class="project-text">
<h2 class="project-name">Monster Rolodex - React</h2>
<h4 class="class-technologies">React</h4>
</div>
<img src="./images/monster-rolodex.jpg" class="project-img"/>
<a href="https://monster-rol.herokuapp.com/" class="project-link" target="_blank">Go to Site</a>
</div>
</div>
</section>
<!-- End of Section 3 -->
<!-- Section 4 -->
<section class="section-4" id="section-4">
<h1 class="section-heading section-4-heading">Contact Me</h1>
<a class="contact-link social" href="https://www.linkedin.com/in/jeff-young-956072215/">LinkedIn</a>
<h2 class="contact-link">Email: hernew@gmail.com</h2>
<h2 class="contact-link">Phone: 509-379-9460</h2>
<a class="contact-link social" href="https://github.com/JMYoung93">Github</a>
<!-- <form class="contact-form center">
<input type="text" placeholder="Name">
<input type="email" placeholder="Email">
<textarea placeholder="Message"></textarea>
<input type="submit" value="Submit" class="contact-form-btn">
</form> -->
</section>
<!-- End of Section 4 -->
</div>
<script src="./script.js"></script>
</body>
</html>