-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
114 lines (98 loc) · 4.15 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
<!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>CalcLand</title>
<!-- Bootstrap -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<!-- CSS For Animation-->
<link rel="stylesheet" href="css/about.css">
<!-- Custom CSS here -->
<style>
body {
overflow: hidden;
}
.contact img {
width: 37px;
height: 37px;
}
.contact img:hover {
transition: transform .1s 0s;
transform: scale(1.1);
}
.contact img:active {
transform: scale(0.97);
}
</style>
</head>
<body>
<!-- Navbar -->
<section id="nav-bar">
<script src="js/navbar.js"></script>
</section>
<!-- About-->
<section class="d-flex justify-content-center align-items-center min-vh-100">
<div class="row w-100">
<div
class="mx-auto shadow col-xl-5 col-lg-8 col-md-9 col-sm-10 col-10 py-1 rounded border animate__zoomInDown px-2 ">
<div class="row">
<!-- image -->
<div class="col-6 text-center">
<img src="css/images/hasann.jpg" class="w-75" alt="">
</div>
<!-- text -->
<div class="col-6 d-flex align-items-center ">
<div class="">
<span class="font-weight-bolder">Developed</span> <span class="text-muted">by</span>
<h1 class="text-success opacity-75">Hasan</h1>
</div>
</div>
</div>
<div class="py-3 px-5">
<div>
<!-- Bio -->
<p class="text-justify">I am a skilled front-end developer. I'm creating stunning interfaces with
HTML, CSS, Bootstrap &
JavaScript staying up-to-date on design trends.
</p>
</div>
<!-- Contact link -->
<div class="row contact pt-4">
<div class="col-4 icon">
<div class="text-center icon">
<a href="https://www.facebook.com/ahmod507" target="_blank">
<img src="css/images/icons/icons8-facebook-50.png" alt="">
</a>
<p>Fb</p>
</div>
</div>
<div class="col-4">
<div class="text-center icon">
<a href="https://github.com/ahmod001" target="_blank"><img
src="css/images/icons/icons8-github-50.png" alt=""></a>
<p>Github</p>
</div>
</div>
<div class="col-4">
<div class="text-center icon">
<a href="mailto:[email protected]"><img
src="css/images/icons/icons8-secured-letter-50.png" alt="">
</a>
<p>Email</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
</body>
</html>