-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (57 loc) · 2.18 KB
/
Copy pathindex.html
File metadata and controls
66 lines (57 loc) · 2.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Portfolio</title>
<link rel="stylesheet" href="src/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://unpkg.com/react@18/umd/react.development.js" crossorigin></script>
<script src="https://unpkg.com/react-dom@18/umd/react-dom.development.js" crossorigin></script>
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
<script src="script.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script> window.onload = changeIndex();
function changeIndex(){
location.replace("src/index.html");
}</script>
</head>
<body onload="changeIndex()">
<header>
<div class="nav-container">
<nav>
<ul>
<li><a class="active" href="src/index.html">Home</a></li>
<li><a href="src/about.html">Skills</a></li>
<li><a href="src/projects.html">Projects</a></li>
<li><a href="src/contact.html">Contact</a></li>
<li><a href="src/school.html">School</a></li>
<li><a href="src/blog.html">Blog</a></li>
</ul>
</nav>
<div class="menu-icon-container">
<div class="menu-icon" onclick="toggleNav()"><i class="icon fa fa-bars"></i></div>
</div>
</div>
<p class="name">Vennila Sooben</p>
</header>
<section class="hero" id="home">
<h1>Welcome to my portfolio</h1>
<p>Here you can find information about me and my projects in the near future</p>
<a href="resume.html" class="btn" onclick="displayResume()">View Resume (English followed by French)</a>
</section>
<footer>
<div class="footer-container">
<div class="footer-left">
<p>© 2023 Vennila Sooben</p>
</div>
<div class="footer-right">
<ul>
<li><a href="https://www.linkedin.com/in/vennilasooben/" target="_blank"><i class="fa fa-linkedin-square"></i></a></li>
<li><a href="https://github.com/mildshield14" target="_blank"><i class="fa fa-github-square"></i></a></li>
</ul>
</div>
</div>
</footer>
</body>
</html>