-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
145 lines (145 loc) · 4.73 KB
/
about.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 name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="description"
content="Mahsa Ghezel, A front end developer. Her about page"
/>
<title>Mahsa Ghezel-About Page</title>
<link rel="stylesheet" href="/styles/style.css" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM"
crossorigin="anonymous"
/>
<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=Merriweather:ital,wght@0,700;1,400&family=Pangolin&family=Roboto&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css"
/>
</head>
<body>
<nav class="navbar navbar-expand-lg bg-body-tertiary">
<div class="container-fluid">
<a class="navbar-brand" href="/" title="home">MahsaGhezel</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNav"
aria-controls="navbarNav"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="/" title="Home"
>Home</a
>
</li>
<li class="nav-item">
<a class="nav-link active" href="/about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/works.html">Works</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/contact.html">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="about-hero container-fluid">
<div
class="container row descriptions d-sm-flex justify-content-evenly align-items-center p-5 mt-5"
>
<div class="col-sm-6">
<h3>Mahsa Ghezel</h3>
<p class="my-texts">
Hi, My name is Mahsa and Glad to see you in my page. I have a degree
in Software Engineering, but my professional focus and expertise are
in Front-end Development.
</p>
<div class="skills mb-5">
<h5>My skills:</h5>
<strong>
HTML5, CSS3, JavaScript(ES6), bootstrap5, ReactJS, Github
</strong>
</div>
<a class="mt-2 btn-brand" href="/works.html" title="See my works">
See my projects
</a>
</div>
<div class="col-sm-5 mt-5">
<img
class="img-fluid rounded"
src="images/me.jpg"
alt="Be Creative Site"
/>
</div>
</div>
</div>
<div class="about-footer container-fluid">
<div class="container d-md-flex justify-content-between p-3">
<div class="contact-mail">
<h4>Contact me:</h4>
<p>mahsa.ghezel.1995@gmail.com</p>
<p>
This page was coded by Mahsa Ghezel and it's
<span>
<a
href="https://github.com/ghezel1995/week-four-portfolio"
class="github-link"
title="Go to download the code"
target="_blank"
>
open-source
</a>
</span>
</p>
</div>
<div class="icons">
<a
href="#"
title="my instagram"
target="_blank"
><i class="bi bi-instagram"></i
></a>
<a
href="https://github.com/ghezel1995"
title="my github"
target="_blank"
><i class="bi bi-github"></i
></a>
<a
href="https://www.linkedin.com/in/mahsaghezel"
title="my linkedin"
target="_blank"
><i class="bi bi-linkedin"></i
></a>
</div>
</div>
</div>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"
integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz"
crossorigin="anonymous"
></script>
<script
src="https://kit.fontawesome.com/56c6266545.js"
crossorigin="anonymous"
></script>
</body>
</html>