-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (64 loc) · 3.53 KB
/
index.html
File metadata and controls
72 lines (64 loc) · 3.53 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
<!doctype HTML>
<html>
<head>
<! Bootstrap CSS >
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<! JQuery for Bootstrap and Bootstrap JS script>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script>
<! MY STYLESHEET>
<link href="/css/styles.css" rel="stylesheet">
<! SPL FONTS FROM GOOGLE>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Jacques+Francois+Shadow&display=swap" rel="stylesheet">
<title>Review My site</title>
</head>
<body>
<! Navigation Bar >
<div>
<header id="nav_bar">
<span id="nav_bar_logo" class="logo spl_font ">JS</span>
<span id="nav_bar_tagline" class="cursive">Qualtiy Redefined</span>
<ul>
<li><a href="/index.html">Home</a></li>
<li><a href="/contact.html">Contact Me</a></li>
<li><a href="/review.html">Review My Site</a></li>
</ul>
</header>
</div>
<! Intro Image >
<div>
<img id="intro_image" src="/media/SR-71-BlackBird design.png">
</div>
<! My Introduction text >
<div id="intro">
<p>
<h2>Don't think <br> Just do it.</h2>
<br> <br>
Well this is my first site and is going to be my Portfolio.<br><br>
I am an experimentalist, I tried to learn the things by trying to rebuild
them from scratch.
From childhood I always loved the scientific way and had a curosity of
how things worked behind the scenes.
And thats the main reason for me to trying to re-engineer things from
scratch and finally land in Engineering.
<br>
I loved space and astronomy even in my highschool days and after landing in engineering I learned
about aircrafts and ther design. I truly fell in love with them with my forte being Aerodynamics
and propulsion.
<br>
<br>I also love to play with software and trying to make them do things that they arent designed to do.
I learned some beginer's knowledge about penitration testing in my highschool.
Later I also practiced with some online resources such as OverTheWire. Overall i learnt a lot.
<br>
<br>My interest is also in Coding. I am fond of coding and bulding any idea that comes into my mind.
So far I have joined Codechef and Hackerrank and am trying to practice problem from there.
<br>
<br>
<br>I would love to read any comment you have on this site in the review section.
<br>Follow me on my social media handles from Contact section, also checkout my work on Github.
</p>
</div>
</body>
</html>