-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
87 lines (83 loc) · 2.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/index.css">
<title>Resume</title>
</head>
<body>
<div id="background">
<!-- Main Page -->
<div id="container">
<nav>
<label class="logo">Ashutosh Saxena</label>
<ul>
<li><a class="active" href="./index.html">Home</a></li>
<li><a href="./Projects.html">Technical Projects
</a>
<!-- <ul>
<li><a href="#">Python</a></li>
<li><a href="#">JQuery</a></li>
<li><a href="#">Javascript</a></li>
</ul> -->
</li>
<li><a href="./Blog.html">Blog
</a>
<!-- <ul>
<li><a href="#">Front End</a></li>
<li><a href="#">Back End</a></li>
<li><a href="#">Others
<i class="fas fa-caret-right"></i>
</a>
<ul>
<li><a href="#">Links</a></li>
<li><a href="#">Works</a></li>
<li><a href="#">Status</a></li>
</ul>
</li>
</ul> -->
</li>
<li><a href="./Resume.html">Resume</a></li>
</ul>
</nav>
</div>
<div id="main">
<div id="main_inside">
<!-- About Me -->
<h1 id="about_me">About Me</h1>
<div id="my_background">
<h2 >My Background</h2>
<p>
I'm a Third-Year Undergradute at Indian Institute of Technology, Goa.
Majoring in Mathematics and Computing.
</p>
</div>
<div id="my_passion">
<h2 >My Passion</h2>
<p>
I'm a Machine Learning and Artificial Intelligence enthusiast and highly interested in Web Devlopment. In my free time I mostly like to Game and watch Anime.
</p>
</div>
<div id="my_hobbies">
<h2 >My Hobbies</h2>
<p>
I like playing Badmintion and Basketball, also I have a keen interest in reading.
</p>
</div>
</div>
</div>
<div>
<!-- Contact Me -->
<footer>
<!-- Footer -->
<ul>
<li><a href="https://twitter.com/Gladiator_1610">Twitter</a></li> |
<li><a href="https://www.linkedin.com/in/ashutosh-saxena">LinkedIn</a></li> |
<li><a href="https://github.com/Xx-Ashutosh-xX">Github</a></li>
</ul>
</footer>
</div>
</div>
</body>
</html>