-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.html
107 lines (93 loc) · 3.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Native CSS Start -->
<link rel="stylesheet" href="/css/index.css">
<!-- Native CSS Start -->
<!-- Bootstrap CSS Start -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
<!-- Bootstrap CSS End -->
<!-- Icon Pack Start -->
<script src="https://kit.fontawesome.com/94b68a0c09.js" crossorigin="anonymous"></script>
<!-- Icon Pack End -->
<!-- Meta Start -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>I'm Himel</title>
<!-- Meta End -->
</head>
<body style="background-color:#f4f5ff;">
<main class="d-block mx-auto" style="max-width:400px;">
<div class="w-100">
<nav class="navbar navbar-expand-lg">
<div class="container-fluid my-auto">
<p class="navbar-brand h1 mb-0">
I'm Himel
</p>
<button class="btn btn-danger" onclick="location.href = '/contact';"><i class="fa-solid fa-message pe-2"></i>Let's talk!</button>
</div>
</nav>
</div>
<div class="container">
<div class="row">
<div class="col-12">
<img src="res/himel.jpg" alt="" class="rounded-5 d-block mx-auto my-3" style="width:50%">
<p class="h1 text-center fw-bold">
Himel Das
</p>
<p class="fs-6 text-center">
@himeeeelll
</p>
<p class="fs-5 text-center">
Hey there! I'm a programmer, podcaster, article writer and a bookworm.
</p>
</div>
</div>
<div class="row border border-1 m-3 rounded">
<div class="col-4 text-center">
<p class="h6 m-1">
Age
</p>
<p class="h1">
14
</p>
</div>
<div class="col-4 text-center border-start border-end">
<p class="h6 m-1">
Grade
</p>
<p class="h1">
8<sup>th</sup>
</p>
</div>
<div class="col-4 text-center">
<p class="h6 m-1">
Projects
</p>
<p class="h1">
6
</p>
</div>
</div>
<div class="row">
<div class="col-7">
<a href="https://himeeeelll.netlify.app/himel_cv.png" download>
<button class="btn btn-danger w-100"><i class="fa-solid fa-download pe-2"></i>Download CV</button>
</a>
</div>
<div class="col-5">
<button class="btn btn-outline-danger w-100" onclick="location.href = 'https://github.com/himeeeelll';"><i class="fa-solid fa-briefcase pe-2"></i></i>Projects</button>
</div>
</div>
</div>
</div>
</main>
<!-- Native JS Start -->
<script src="js/index.js"></script>
<!-- Native JS End -->
<!-- Bootstrap JS Start -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-pprn3073KE6tl6bjs2QrFaJGz5/SUsLqktiwsUTF55Jfv3qYSDhgCecCxMW52nD2" crossorigin="anonymous"></script>
<!-- Bootstrap JS End -->
</body>
</html>