-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
57 lines (48 loc) · 2.35 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
<!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">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous">
<title>About NoTe Js</title>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container-fluid">
<a class="navbar-brand" href="about.html">NoTe Js</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="Project1-NoteMaker.html">Home</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container">
<h1 class="my-3">Hey There!</h1>
<p style="font-size: 22px;"> I developed this project as a practice for polishing my JavaScript Skills.<br>
Over the time as I learn more stuff, I'll be commiting various changes that I feel are necessary.
</p>
<div class="container justify-content-center align-items-center my-6">
<div class="row">
<div class="col">
<img src="images/me3.jpg" alt="This is me" height="200px">
</div>
<div class="col">
<h4> I am Yash, a student at IIIT Kalyani. My skills include programming with c++ , and developing web-pages by using HTML, CSS and JavaScript.</h4>
</div>
<div class="col"></div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-b5kHyXgcpbZJO/tY9Ul7kGkf1S0CWuKcCD38l8YkeH8z8QjE0GmW1gYU5S9FOnJ0"
crossorigin="anonymous"></script>
</body>
</html>