-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
135 lines (122 loc) · 5.96 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
<!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">
<title>Christophe VERGNES's portfolio</title>
<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=Oxygen&family=Oxygen+Mono&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/9e7c823573.js" crossorigin="anonymous"></script>
</head>
<body>
<nav>
<ul>
<li>
<h1><a href="index.html"><span class="fa-solid fa-person-walking" aria-hidden="true"></span>
<span>Christophe VERGNES</span></a></h1>
</li>
<li><a href="#projects">Projects</a></li>
<li><a href="about.html">About</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="https://www.linkedin.com/in/christophe-vergnes-96501a69/" target="_blank"><span
class="fa-brands fa-linkedin" aria-hidden="true"></span><span
class="sr-only">LinkedIn</span></a></li>
<li><a href="https://github.com/cvergnes?tab=repositories" target="_blank"><span
class="fa-brands fa-square-github" ariah-hidden="true"></span><span
class="sr-only">Github</span></a></li>
<li><a href="https://leetcode.com/cvergnes/" target="_blank"><span class="fa-solid fa-code"
ariah-hidden="true"></span><span> Leetcode</span></a></li>
<li><a href="https://www.hackerrank.com/cvergnes" target="_blank"><span class="fa-solid fa-code"
ariah-hidden="true"></span><span> HackerRank</span></a></li>
<li><a href="https://docs.google.com/document/d/1IEF80w1clbWcMPoKT6WoSQa_7TL5U69H/edit?usp=sharing&ouid=109913708258917313192&rtpof=true&sd=true"
target="_blank" class="button">Resume</a></li>
</ul>
</nav>
<div class="gradient"></div>
<section id="intro">
<p class="name">Hi, my name is <span>Christophe</span></p>
<h2>I create websites</h2>
<p>I'm a full stack developer specializing in React and c# and who loves photography</p>
<p>Currently, I'm making a career switch from Scrum Master to front end developer</p>
</section>
<div class="gradient"></div>
<div class="section-blue">
<section id="projects">
<h2>Projects I'm proud of</h2>
<article>
<div class="text">
<h4>Latest Project</h4>
<h3>Calculator</h3>
<p class="blackbox">My first version of a calculator in React : <a
href="https://codepen.io/cvergnes/full/VwrVxRB">Code
pen</a>. Not very clean but fun to do. </p>
<h4>Technologies used include:</h4>
<ul>
<li>HTML</li>
<li>React</li>
</ul>
</div>
<img src="img/calc.png" alt="Screenshot of the Calculator." />
</article>
<article class="reverse">
<div class="text">
<h4>Fullstack poject</h4>
<h3>Todoist clone</h3>
<p class="blackbox">Todoist clone<a href="https://codepen.io/cvergnes/full/VwrVxRB">Code
pen</a>. Not very clean but fun to do. </p>
<h4>Technologies used include:</h4>
<ul>
<li>HTML</li>
<li>React</li>
</ul>
</div>
<img src="img/calc.png" alt="Screenshot of the Calculator." />
</article>
<article>
<div class="text">
<h4>Ambitious projects</h4>
<h3>Lean roadmap builder and clone of pointing poker</h3>
<p class="blackbox"> <a href="https://codepen.io/cvergnes/full/VwrVxRB">Code
pen</a>. Not very clean but fun to do. </p>
<h4>Technologies used include:</h4>
<ul>
<li>HTML</li>
<li>React</li>
</ul>
</div>
<img src="img/calc.png" alt="Screenshot of the Calculator." />
</article>
</section>
</div>
<div class="gradient"></div>
<div class="section-plum">
<section id="contact">
<div>
<h2>Contact me</h2>
<p>I'm always interested in hearing about front end programming or photography.</p>
<p><a href="mailto:[email protected]" class="button">Email me</a></p>
</div>
</section>
</div>
<div class="gradient"></div>
<footer>
<ul>
<li>
<h2>Christophe VERGNES · Front end developer</h2>
</li>
<li><a href="https://www.linkedin.com/in/christophe-vergnes-96501a69/" target="_blank"><span
class="fa-brands fa-linkedin" aria-hidden="true"></span><span
class="sr-only">LinkedIn</span></a></li>
<li><a href="https://github.com/cvergnes?tab=repositories" target="_blank"><span
class="fa-brands fa-square-github" ariah-hidden="true"></span><span
class="sr-only">Github</span></a></li>
<li><a href="mailto:[email protected]"> <span class="fa-regular fa-envelope"
aria-hidden="true"></span><span class="sr-only">Email</span></a></li>
<li><small>© 2022 Christophe VERGNES. All rights reserved.</small></p>
</ul>
</footer>
</body>
</html>