-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
145 lines (141 loc) · 4.81 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!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="styles.css" />
<title>Document</title>
</head>
<body>
<section id="welcome-section">
<nav id="navbar">
<div></div>
<ul class="nav-items">
<li><a class="nav-item" href="#projects">Projects</a></li>
<li><a class="nav-item" href="#contact">Contact</a></li>
</ul>
</nav>
<div id="welcome-title">
<span>I'm </span>
<h1 class="name">Johan</h1>
<span class="job">A Developer</span>
</div>
<nav id="social-links">
<ul>
<li class="social-item">
<a
href="https://github.com/CallensJ"
target="_blank"
id="profile-link"
><i class="fa-brands fa-github social-icon fa-3x"></i
></a>
</li>
<li class="social-item">
<a href="#" target="_blank" id="profile-link"
><i class="fa-brands fa-linkedin social-icon fa-3x"></i
></a>
</li>
<li class="social-item">
<a href="#" target="_blank" id="profile-link"
><i class="fa-brands fa-twitter social-icon fa-3x"></i
></a>
</li>
</ul>
</nav>
</section>
<section id="projects">
<h2 id="title">My Projects</h2>
<div id="projects-area">
<div class="project-tile">
<img src="https://raw.githubusercontent.com/CallensJ/portfolio/main/img/Screenshot.png" alt="screenshot" />
<h3>Arnold tribute</h3>
<p>Arnold Tribute page for FreecodeCamp webdesign certification</p>
<p>
<a
href="https://callensj.github.io/Arnold-Tribute/"
target="_blank"
class="btn"
>Go to page</a
>
</p>
</div>
<div class="project-tile">
<img src="https://raw.githubusercontent.com/CallensJ/portfolio/main/img/landing.png" alt="screenshot" />
<h3>Product landing page</h3>
<p> Product landing page sword crafting for FreecodeCamp webdesign certification</p>
<p><a href="https://callensj.github.io/swords-landing-page/" target="_blank" class="btn">Go to page</a></p>
</div>
<div class="project-tile">
<img src="https://raw.githubusercontent.com/CallensJ/portfolio/main/img/survey.png" alt="screenshot" />
<h3>Survey Form</h3>
<p>Survey form page for FreecodeCamp webdesign certification</p>
<p><a href="https://callensj.github.io/survey-form/" class="btn">Go to page</a></p>
</div>
<div class="project-tile">
<img src="https://raw.githubusercontent.com/CallensJ/portfolio/main/img/card.png" alt="screenshot" />
<h3>Product Card</h3>
<p>Product card component for Frontendmentor html/css challenge</p>
<p><a href="https://callensj.github.io/product-card-component.github.io/" class="btn">Go to page</a></p>
</div>
</div>
</section>
<section id="contact">
<div class="contact__bloc">
<h2 id="title">Contact</h2>
<p class="text">
Neque porro quisquam est qui dolorem ipsum quia dolor sit amet,
consectetur, adipisci velit..."
</p>
<div class="contact__info">
<i class="fa fa-brands fa-whatsapp fa-3x social-icon"></i>
<h3>whatsApp</h3>
<p>+33 7123456789</p>
</div>
<div class="contact__info">
<i class="fa-solid fa-envelope fa-3x social-icon"></i>
<h3>Email</h3>
<p>weylin030@protonmail.ch</p>
</div>
</div>
<div>
<div class="contact__bloc">
<h2 id="title">wanna keep in touch ?</h2>
<form id="form">
<input
type="text"
id="fname"
name="fname"
placeholder="Your name"
/><br />
<input
type="email"
id="email"
name="email"
placeholder="Your e-mail"
/><br />
<input
type="tel"
id="tel"
name="tel"
placeholder="Your Phone"
/><br />
<textarea
id="w3review"
name="w3review"
rows="1"
cols="50"
placeholder="Your Message"
>
</textarea>
<a href="#" class="btn">Send message</a>
</form>
</div>
</div>
</section>
<script
src="https://kit.fontawesome.com/39c57d5ec2.js"
crossorigin="anonymous"
></script>
</body>
</html>