-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
126 lines (121 loc) · 4.12 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
<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>Sofien the dev</title>
<link rel="stylesheet" href="css/index.css" />
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/fontawesome.min.css"
/>
</head>
<body>
<section class="header">
<nav>
<a href="index.html" class="logo-title">Sofien the dev</a>
<div class="links" id="navLinks">
<i class="fa fa-times" onclick="hideMenu()"></i>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Technologies</a></li>
<li><a href="#">Projects</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
<i class="fa fa-bars" onclick="showMenu()"></i>
</nav>
<div class="text-box">
<h1>Your new favorite developer</h1>
<p>
Sofien is a full stack junior developer who uses different
technologies like Kotlin/Java, Frontend Techs, Spring and many others
<a href="Technologies.html">See all the technologies...</a>
</p>
<a href="Contact.html" class="contact-me">Contact me for more</a>
</div>
</section>
<!-- SERVICES -->
<section class="services">
<h1 class="services-h1">Services I offer</h1>
<p style="font-size: 25px;">Here are some services I can offer</p>
<div class="row">
<div class="services-col">
<h3>Frontend</h3>
<p>
I use frontend technologies like HTML5, CSS3, JavaScript and some of Reactjs & Angular
</p>
</div>
<div class="services-col">
<h3>Backend</h3>
<p>
When it comes to backend, Spring is my favorite game !
</p>
</div>
<div class="services-col">
<h3>Mobile</h3>
<p>
That's the real deal for me, Android development using Kotlin & Java. For cross platforme I use React Native
</p>
</div>
</div>
</section>
<!-- TECHNOLOGIES -->
<section class="technologies">
<h1 class="services-h1">My main technologies</h1>
<p style="font-size: 25px;">
Here are my favorite Games !
</p>
<div class="row" >
<div class="technologies-col">
<img src="images/Kotlin.png" alt="Kotlin Logo" />
<div class="layer">
<h3>Kotlin</h3>
</div>
</div>
<div class="technologies-col">
<img src="images/Android.png" alt="Android" />
<div class="layer">
<h3>Android Development</h3>
</div>
</div>
<div class="technologies-col">
<img src="images/react native.png" alt="React Native" />
<div class="layer">
<h3>React Native</h3>
</div>
</div>
<div class="technologies-col">
<img src="images/spring.png" alt="Spring" />
<div class="layer">
<h3>Spring</h3>
</div>
</div>
</div>
</section>
<footer class="footer">
<div style="margin-left:10%; width: fit-content;">
<a href="index.html" class="logo-title">Sofien the dev</a>
</div>
<div class="contact">
<p class="contactText">Reach me on :</p>
<a href="https://www.linkedin.com/in/sofienbenktib/" target="_blank" style="color: white; margin-right: 10px;">LinkedIn</a>
<a href="https://github.com/SofienBenKtib" target="_blank" style="color: white;">GitHub</a>
</div>
<div class="copyrightsWrapper">
<p class="copyrights">Copyrights © Sofien Ben Ktib</p>
</div>
</footer>
<!-- JAVASCRIPT FUNCTIONS FOR TOGGLING MENU IN RESPONSIVE MODE -->
<script>
var navLinks = document.getElementById("navLinks");
function showMenu() {
navLinks.style.right = "0";
}
function hideMenu() {
navLinks.style.right = "-200px";
}
</script>
</body>
</html>