-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile.html
69 lines (65 loc) · 2.75 KB
/
profile.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
<!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">
<title>Profile</title>
<link rel="stylesheet" href="./mdb-ui-kit/css/mdb.min.css" />
<link
rel="stylesheet"
href="./fontawesome-free-5.15.4-web/fontawesome-free-5.15.4-web/css/all.min.css"
/>
<link rel="stylesheet" href="./swiper/swiper-bundle.min.css" />
<link rel="stylesheet" href="./css/main.css" />
</head>
<body>
<section class="vh-100 gradient-bg ">
<div class="container py-5 h-100">
<div class="row justify-content-center align-items-center h-100">
<div class="col-lg-6 mb-4 mb-lg-0">
<div class="card mb-3 border-0 rounded-4">
<div class="row g-0">
<div class="col-md-4 bg-warning text-center text-white rounded-4">
<img src="./images/IMG_2063.JPG" alt="Avatar" class="img-fluid my-5 rounded-4" style="width: 80px;" />
<h5>Rashin Farahani</h5>
<p>Web Developer</p>
<i class="fas fa-pencil-alt mb-5"></i>
</div>
<div class="col-md-8">
<div class="card-body p-4">
<h6>My Information</h6>
<hr class="mt-0 mb-4">
<div class="row pt-1">
<div class="col-6 mb-3">
<h6>Email</h6>
<p class="text-muted">[email protected]</p>
</div>
<div class="col-6 mb-3">
<h6>Phone</h6>
<p class="text-muted">+98 911 350 234</p>
</div>
</div>
<h6>My Projects</h6>
<hr class="mt-0 mb-4">
<div class="row pt-1">
<div class="col-6 mb-3">
<h6>Recent</h6>
<p class="text-muted">LEGO project / Oriflame project / Microsoft project</p>
</div>
</div>
<div class="d-flex justify-content-start">
<a href="#!"><i class="fab fa-facebook-f fa-lg me-3"></i></a>
<a href="#!"><i class="fab fa-twitter fa-lg me-3"></i></a>
<a href="#!"><i class="fab fa-instagram fa-lg"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</body>
</html>