-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (68 loc) · 3.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
<link href="styles.css" rel="stylesheet">
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<link rel="icon" type="image/x-icon" href="d-alphabet.svg">
<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=Tangerine&display=swap" rel="stylesheet">
<title>Devanshu Sharma</title>
</head>
<body>
<!--Including Navigation Bar everywhere-->
<div id="nav-placeholder"></div>
<script>
$(function(){
$("#nav-placeholder").load("nav.html");
});
</script>
<!--container-->
<div id="first-half">
<div class = "container-lg" id="homepage">
<!--firs row-->
<div class = "row text-white" >
<div class ="col-md-6 col-xs-12">
<h1>Hello, I'm Devanshu</h1>
<h2>My favourite hobby is watching anime.</h2>
<p></p>
<p class="lead">
Turning 24 this year, I am working as a software engineer at a multinational company in India.
I have been working on Java, Spring Boot, AWS, Kubernetes, Docker and many other languages. Before this
I had worked as a Financial Analyst Intern at an angel network. My first anime was Naruto and from there on
I got more intrigured about it. I ended up watching more and more and still exploring.
</p>
</div>
<div class = "col-md-6 col-xs-12">
<img class="img-fluid" src="zoro.png" alt="zoro">
</div>
</div>
</div>
</div>
<!--The button-->
<div class ="container-lg" id="action-button">
<a href="animes.html" class="p-1 btn" ><h5 class="p-2">Suggest me an Anime! <img src="arrow-right-circle.svg" alt="arrow"></h5></a>
</div>
<div class = "row container-lg" id="quote">
<div class = "col-md-6 col-xs-12">
<img class="img-fluid" src="naruto.png" alt="naruto"/>
</div>
<div class ="col-md-6 col-xs-12">
<blockquote>Want to Connect?</blockquote>
<cite>I am always looking for new people to talk to and want to connect to more programming enthusiasts
who are also interested in watching animes. I have shared my socials on this page and hoping to connect.
</cite>
</div>
</div>
<!--footer-->
<div id="footer-placeholder"></div>
<script>
$(function(){
$("#footer-placeholder").load("footer.html");
});
</script>
</body>
</html>