-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathabout.html
More file actions
103 lines (82 loc) · 4.83 KB
/
about.html
File metadata and controls
103 lines (82 loc) · 4.83 KB
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
<!DOCTYPE html>
<html>
<head>
<title>About</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="about.css">
<link rel="stylesheet" type="text/css" href="login.html">
<link rel="stylesheet" type="text/css" href="signup.html">
<link rel="stylesheet" type="text/css" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js">
<link rel="stylesheet" type="text/css" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.bundle.min.js">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
</head>
<body class="mainbody2">
<nav class="navbar sticky-top navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="#">THE NOTES APP</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-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 mr-auto">
<li class="nav-item active">
<a button type="button" class="nav-link btn btn-light" href="home.html">Home<span class="sr-only">(current)</span></a>
</li>
<li class="nav-item active">
<a button type="button" class="nav-link btn btn-light" id="signout">LogOut<span class="sr-only">(current)</span></a>
</li>
</ul>
</div>
</nav>
<div class="about-section">
<h1>About Us Page</h1>
<p>Do you also struggle in remembering your To-Do List? Worry not this WebApplication is at your rescue. Built using HTML,CSS,JavaScript and using Firebase as Realtime Database,you could now save and access your notes on the go anywhere and anytime. This WebApp is developed by Mohit Kumar,who is currently a Student at Indian Institute of Technology (Indian School of Mines) Dhanbad.</p>
<p>Special thanks to Mihir Jichkar for his help.<br>Also a heartfell thanks to Dravisha Pokharna for her insightful ideas on how to improve the website.</p>
<p><a href="https://github.com/mastermind222/TheNoteApp">Suggest Changes: Github Repository</a></p>
</div>
<div class="container">
<div class="row">
<div class="col-sm">
</div>
<div class="col-sm">
<div class="column">
<div class="card">
<img src="https://i.imgur.com/3rHBKND.jpg" alt="Mohit" style="width:100%">
<div class="container">
<h2>Mohit Kumar</h2>
<p class="title">B.Tech Electronics and Communication Engineering <br> IIT(ISM) Dhanbad</p>
<p>Ethusiastic Web Developer :) <br> Skills: HTML, CSS , JavaScript</p>
<p><a href="https://github.com/mastermind222">Github</a>
<a href="https://www.facebook.com/profile.php?id=100008006732509">Facebook</a>
<a href="https://www.instagram.com/im_walterwhite/?hl=en">Instagram</a></p>
<p><a class="button" href="https://www.linkedin.com/in/mohit-kumar-2b4586b2/">Contact</a></p>
</div>
</div>
</div>
</div>
<div class="col-sm">
</div>
</div>
</div>
<footer class="footer bg-light py-3" style="background-color: #F8F9FA;">
<div class="container">
<span class="text-muted">© THE NOTESAPP</span>
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin="anonymous"></script>
<script src="https://www.gstatic.com/firebasejs/8.2.5/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.2.5/firebase-analytics.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.2.5/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.2.5/firebase-database.js"></script>
<script src="about.js"></script>
</body>
</html>