-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
81 lines (81 loc) · 2.48 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
<!DOCTYPE html>
<html>
<head>
<title>My profile</title>
<meta charset="utf-8" />
<link
href="https://fonts.googleapis.com/css?family=Lora:400,700|Roboto:300,400,500,700,900"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.2.0/css/all.css"
integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ"
crossorigin="anonymous"
/>
</head>
<body>
<div class="container">
<div class="card-white" id="introduction">
<h1>Hi 👋! I'm Khaoula</h1>
<img
src="images/profile.png"
class="img-circle"
width="100px"
alt="Khaoula BENASILA"
/>
<p>
I’m a software developer based in Casablanca.<br />Specializing in
building and designing exceptional websites, applications and
everything in between.
</p>
</div>
<div class="card-white">
<h2>UX/UI Design 💡</h2>
<p>
I am passionate about <strong>UX/UI Design</strong>. <br />
I have made many designs in a variety of disciplines
</p>
</div>
<div class="card-white">
<h2>Frontend Development 💻</h2>
<p>
I am passionate about <strong>Frontend Development</strong>. <br />
This is due to my contribution in the realization of academic projects
and even during my internships.
</p>
</div>
<div class="card-white">
<h2>Mobile Development 📱</h2>
<p>
I am passionate about <strong>Mobile Development</strong>.<br />
This is due to my contribution in the realization of academic projects
</p>
</div>
<div class="card-white">
<h2>GET IN TOUCH</h2>
<ul class="list-inline">
<li>
<a href="https://github.com/khaoulabenasila" target="_blank">
<i class="fab fa-github-square"></i>
</a>
</li>
<li>
<a href="https://twitter.com/KBenasila" target="_blank">
<i class="fab fa-twitter-square"></i>
</a>
</li>
<li>
<a
href="https://www.linkedin.com/in/khaoula-benasila-094440193/"
target="_blank"
>
<i class="fab fa-linkedin-in"></i>
</a>
</li>
</ul>
</div>
</div>
</body>
</html>