-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
95 lines (63 loc) · 3.55 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<!--#################### HEAD ####################-->
<head>
<meta charset="utf-8">
<title>Nicolas's Portfolio</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="icon" href="images/favicon.ico">
<!-- GOOGLE FONTS -->
<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=Press+Start+2P&display=swap" rel="stylesheet">
</head>
<body> <!-- ########## BODY ##########-->
<!-- #################### TOP CONTAINER ####################-->
<div class="top-container">
<h1>I'm Nicolas</h1>
<h2>a Developer and Designer</h2>
<img class="mountains" src="images/mountains.png" alt="mountains-img">
</div>
<!-- #################### MIDDLE CONTAINER ####################-->
<div class="middle-container">
<div class="profile"> <!-- PROFILE -->
<img src="images/avatar.png" alt="avatar">
<h3>Hello</h3>
<p>I'm a Web and Software Developer with strong artistic skills. I love bookbinding, sound design and game development.</p>
</div>
<hr> <!----------------------------------------------->
<div class="skills"> <!-- SKILLS -->
<h3>My Skills</h3>
<div class="skill-row"> <!-- SKILL #1 : DESIGN & DEVELOPMENT -->
<img class="coding-img" src="images/coding.png" alt="coding-image">
<h4>Design & Development</h4>
<p>I made my first program when I was six, on a Comodore CPC-464. I studied and practiced game development and web development for more then six years, before getting serious about the latter.</p>
</div>
<div class="skill-row"> <!-- SKILL #2 : GRAPHIC DESIGN -->
<img class="graphic-design-img" src="images/graphic-design.png" alt="graphic-design-image">
<h4>Digital Art</h4>
<p>I have spent literally decades studying and practicing sketching, digital and analog painting, vector graphics, pixel art and graphic design. I came up with my own style and I like to play with it on all my development projects.</p>
</div>
<div class="skill-row"> <!-- SKILL #3 : SOUND DESIGN -->
<img class="sound-design-img" src="images/sfx-design.png" alt="sfx-design-image">
<h4>Sound Design</h4>
<p>I'm passionate about recording sounds, making libraries with them, and the little cherry on the top, designing sound effects for films and games.</p>
</div>
</div>
<hr> <!----------------------------------------------->
<div class="contact-me"> <!-- CONTACT ME -->
<h3>Get In Touch</h3>
<h4>How can I help ? do you have any question ?.</h4><br />
<p class="contact-message">If you want to chat or work on a project together, I'll be happy to hear about you !</p>
<a class="btn" href="mailto:[email protected]">CONTACT ME</a>
</div>
</div>
<!-- #################### BOTTOM CONTAINER ####################-->
<div class="bottom-container">
<a class="footer-link" href="https://www.linkedin.com/in/nicolas-marx-bronner-559256231/">LinkedIn</a>
<a class="footer-link" href="https://twitter.com/NicolasMBronner">Twitter</a>
<a class="footer-link" href="https://www.instagram.com/elvinanima/">Instagram</a>
<p class="copyright">© 2022 Nicolas Marx-Bronner.</p>
</div>
</body>
</html>