-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
116 lines (114 loc) · 5.66 KB
/
index.html
File metadata and controls
116 lines (114 loc) · 5.66 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
<!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>Codewell Challenge - Web Developer Portfolio</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<header class="header">
<nav class="nav">
<div class="nav-logo">Johnattan Specter</div>
<div class="nav-links">
<ul class="nav-item">Article</ul>
<ul class="nav-item">Chats</ul>
<ul class="nav-item">Awards</ul>
<ul class="nav-item">About</ul>
</div>
<button class="nav-btn">Get in touch</button>
<div class="nav-burger-menu">
<svg width="24" height="20" viewBox="0 0 24 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M24 4H0V0H24V4ZM24 8H0V12H24V8ZM24 16H0V20H24V16Z" fill="white"/>
</svg>
</div>
</nav>
</header>
<main class="main">
<section class="section-banner container">
<h1>Helping companies build better, scalable software.</h1>
<p>Award-winning web developer and author, with over 15+ years of working experience with Fortune 500 companies like Appe, Google, Facebook, and more.</p>
</section>
<section class="section-logo container">
<ul class="logo-container">
<li class="logo-item">
<img src="./img/Walmart.svg" alt="">
</li>
<li class="logo-item">
<img src="./img/JP Morgan.svg" alt="">
</li>
<li class="logo-item">
<img src="./img/Visa.svg" alt="">
</li>
<li class="logo-item">
<img src="./img/Tinder.svg" alt="">
</li>
<li class="logo-item">
<img src="./img/Samsung.svg" alt="">
</li>
<li class="logo-item">
<img src="./img/Verizon.svg" alt="">
</li>
</ul>
</section>
<section class="section-works container">
<ul class="works-container">
<li class="work-item">
<div class="work-img-container">
<img src="./img/Spense.png" alt="">
</div>
<div class="links-container">
<a href="#" class="work-link">Spense.com</a>
<span>→</span>
</div>
<p class="work-description">Rethinking the way writers get paid, an open-source platform designed to help writers focus more on writing, and less on when and how they'll get paid. Project in collaboration with Codewell.cc</p>
</li>
<li class="work-item">
<div class="work-img-container">
<img src="./img/YelpCamp.png" alt="">
</div>
<div class="links-container">
<a href="#" class="work-link">YelpCamp.com</a>
<span>→</span></div>
<p class="work-description">Allowing backpack travelers to perfectly plan their trip through an open-source platform similar to TripAdvisor. With over 1m MAU, YelpCamp has been the crowd's favorite in 2021.</p>
</li>
</ul>
</section>
<section class="section-blog container">
<div class="blog-content">
<div class="blog content-left">
<h2>A co-founder at one of the world's largest communities.</h2>
<p>The combined experience I have working at the top Fortune 500 companies has allowed me to developer a skillset that helps me in not just development, but in every aspect of any business.</p>
<p>I'm proud to announce that I am now working at one of the world's largest communities teaching young minds about how to sell yourself as a developer and open them to a whole new world of opportunities.</p>
</div>
<div class="blog content-right">
<p>As a developer, you have everything available to you and all that's holding you back is yourself.</p>
<p>A quote I live by perfectly illustrate what I mean.</p>
<p>"How big you dream, if you knew you wouldn't fall?" You've already gone through the hardest parts being a developer, it is time to elevate your skills and become a leader in something you're passionate about.</p>
<p>I'm happy to chat over coffee some time about how i can help your company.</p>
</div>
</div>
</section>
<section class="section-contact container">
<h2>Interested in working with me?</h2>
<p>I'm active on all social media platform listed below, but you can also send me an email and i will get back to you within 24-48 hours.</p>
<button>Get in touch</button>
</section>
</main>
<footer class="footer">
<div class="footer-logo">Johnathan Specter</div>
<div class="footer-icons">
<a href="#" class="footer-icon-item">
<img src="./img/Twitter.svg" alt="">
</a>
<a href="#" class="footer-icon-item">
<img src="./img/LinkedIn.svg" alt="">
</a>
<a href="#" class="footer-icon-item">
<img src="./img/Github.svg" alt="">
</a>
</div>
</footer>
</body>
</html>