-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
130 lines (118 loc) · 5.25 KB
/
index.html
File metadata and controls
130 lines (118 loc) · 5.25 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
<!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">
<link rel="stylesheet" href="/css/style.css" />
<link rel="stylesheet" href="/css/fontawesome/css/all.css" />
<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=Ubuntu:wght@300;400&display=swap" rel="stylesheet">
<title>John Wells - Full Stack Developer - Portfolio</title>
</head>
<body>
<nav class='navigation'>
<div class='logo'><a href='#top'>console.log<span class='parens'>(</span>'John Wells'<span
class='parens'>);</a></span></div>
<!-- <a href='#techstack' class="hidden">TechStack<span class='parens'>()</span></a> -->
<a href='#projects'>Projects<span class='parens'>()</span></a>
<a href='#contact'>Contact<span class='parens'>()</span></a>
</nav>
<header class='header stars'>
<div class='header__main-content twinkling'>
<!-- <img src='/img/me.jpg' /> -->
<h1 class='header__heading'>
<span>const iAm = () => {   return 'JavaScript   Developer'; <br>};</span>
</h1>
</div>
<div class='header__social'>
<div class='header__social--icon-container'>
<a href='https://github.com/johngwells' target='_blank'><i class="fab fa-github"></i></a>
<a href='https://www.linkedin.com/in/john-wells-574aa8134/' target='_blank'><i
class="fab fa-linkedin-in"></i></a>
</div>
</div>
</header>
<!-- <div id='techstack'></div>
<section class='section-one'>
<div>
<div class='section-one__span'>
<span>Frontend:</span>
<span>React &</span>
<span>Next.JS</span>
</div>
<div class='section-one__span'>
<span>Backend:</span>
<span>NodeJS,</span>
<span>GraphQL, Apollo</span>
</div>
<div class='section-one__span'>
<span>Database:</span>
<span>Hasura, Prisma with any SQL type DB,</span>
<span>Firebase & Airtable</span>
</div>
</div>
</section> -->
<div id="projects"></div>
<div class='projects-container'>
<h2 class='projects__text'>Projects</h2>
<h3 class='projects__subtitle'>*Icons* <i class="fa-solid fa-laptop-code icon-margin"></i>live app |
<i class="fa-solid fa-angle-right"></i> github
</h3>
</div>
<section class='section-two'>
<div class='section-container'>
<div class='card'>
<div class='card__content fill'>
<img src='./img/FlowOS.png'>
</div>
<div class='card__bottom'>
<div class='card__bottom-left'>
<span class='title'>
<a href='https://flow-os.vercel.app/'><i class="fa-solid fa-laptop-code"></i></a>FlowOS</span>
<div class='sub-title'>
<span>Frontend: Next.JS, React<br><br>
Backend: GraphQL, Apollo, Prisma, Postgres</span>
</div>
</div>
<div class='card__bottom-right'>
<a href='https://github.com/johngwells/FlowOS' target='_blank'><i
class="fa-solid fa-angle-right icon-large"></i></a>
</div>
</div>
</div>
<div class='card'>
<div class='card__content fill'>
<img src='./img/Aperture.png'>
</div>
<div class='card__bottom'>
<div class='card__bottom-left'>
<span class='title'>
<a href='https://aperture-nine.vercel.app'><i class="fa-solid fa-laptop-code"></i></a>Aperture</span>
<div class='sub-title'>
<span>Frontend: ReactJS, UI: Tailwind<br><br>
Backend: Firebase</span>
</div>
</div>
<div class='card__bottom-right'>
<a href='https://github.com/johngwells/E-Shop' target='_blank'><i
class="fa-solid fa-angle-right icon-large"></i></a>
</div>
</div>
</div>
</div>
</section>
<section class="form-wrapper">
<h2>Contact:</h2>
<form class="form" action="https://formsubmit.co/e36b7cb7777a099935e36c7ac68324eb" method="POST">
<input type="hidden" name="_next" value="#">
<input type="email" name="email" placeholder="Email Address" required>
<textarea type="textarea" placeholder="write your message" required></textarea>
<button class="btnSubmit" type="submit">Submit</button>
</form>
</section>
<hr>
<footer id="contact">Designed & coded with ❤️ - John Wells</footer>
</body>
</html>