-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
109 lines (102 loc) · 5.11 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
<!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>Web developer portfolio | Codewell Challenge</title>
<link rel="shortcut icon" href="Assets/Logos/js.jpg" type="image/x-icon">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400&family=Prata&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/responsive.css">
<script src="script.js" defer></script>
</head>
<body>
<header>
<div>
<p><a href="#">Jonathan Specter</a></p>
</div>
<nav id="nav-menu">
<ul>
<li><a href="#articles">Articles</a></li>
<li><a href="#chats">Chats</a></li>
<li><a href="#awards">Awards</a></li>
<li><a href="#about">About</a></li>
</ul>
</nav>
<div>
<button>Get in touch</button>
</div>
<div id="menu">
<span class="bar" id="b1">
</span>
<span class="bar" id="b2">
</span>
<span class="bar" id="b3">
</span>
</div>
</header>
<main>
<section class="introduction">
<h1>Helping Companies build better, scalable software.</h1>
<p>Award-winning web developer and author, with over 15+years of working with Fortune 500 companies like Apple, Google, Facebook and more.</p>
</section>
<section class="companies-logos">
<div><img src="Assets/Logos/Walmart.svg" alt="Walmart.svg"></div>
<div><img src="Assets/Logos/JP Morgan.svg" alt="JP Morgan.svg"></div>
<div><img src="Assets/Logos/Visa.svg" alt="Visa.svg"></div>
<div>
<embed src="Assets/Logos/Tinder.svg"/>
</div>
<div><img src="Assets/Logos/Samsung.svg" alt="Samsung.svg"></div>
<div><img src="Assets/Logos/Verizon.svg" alt="Verizon.svg"></div>
</section>
<section class="created-website" id="articles">
<div class="cw-div">
<div><img src="Assets/Spense.png" alt="Spense.png"></div>
<div>
<h2>Spense.com →</h2>
<p>Rethinking the way writers get paid, an open source platafor designed to help writers focus more on writing, and less on <i>when</i> and <i>how</i> they'll get paid.Project in collaboration with Codewell.cc</p>
</div>
</div>
<div class="cw-div">
<div><img src="Assets/YelpCamp.png" alt="YelpCamp.png"></div>
<div>
<h2>YelpCamp.com →</h2>
<p>Allowing backpack travelers to perfectly plan their trip through an open-source plataform similar to TripAdvisor.With over 1m MAU, YelpCamp has been the crowd's favorite in 2021</p>
</div>
</div>
</section>
<section class="achivements" id="awards">
<div>
<h2>A co-founder at one of the world's largest communities.</h2>
<p>The combined experience I have working at the top fortune 5000 companies has allowed me to developer a skillset that helps me in not just develompent, but in every aspect of any buisness.</p>
<p>I'm Proud to announce that I am now working at one of the worlds'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>
<p>As a developer, you have everything avaliable to you and all that's holding you back is yourself</p>
<p>A quote I live by perfectly illustrates what I mean</p>
<p>"How big would you dream, if you knew you wouldn't fail ?. You gone through the hardest parts bein a developer, it's time to elevete your skills, and become a leader in something you are passionate about"</p>
<p>I'm happy to chat over coffee some time about how I can help your company</p>
</div>
</section>
<section class="get-in-touch" id="chats">
<h2>Interested in working with me?</h2>
<p>I'm active on all socials media plataforms listed below you can also write me an email and I will get back to you within 24-48 hours</p>
<button>Get in touch</button>
</section>
<section class="social-contact" id="about">
<div>
<p>Johnathan Specter</p>
</div>
<div>
<img src="Assets/Social Icons/Twitter.svg" alt="Twitter.svg">
<img src="Assets/Social Icons/LinkedIn.svg" alt="LinkedIn.svg">
<img src="Assets/Social Icons/Github.svg" alt="Github.svg">
</div>
</section>
</main>
</body>
</html>