-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (51 loc) · 1.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Personal Portfolio</title>
<!-- Boxicons -->
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
<!-- Cascading Style Sheet -->
<link rel="stylesheet" href="/CSS/style.css">
</head>
<body>
<div class="container">
<nav>
<div class="logo">folio <b>◉</b></div>
<ul class="navItems">
<li><a href="#">home</a></li>
<li><a href="#">about</a></li>
<li><a href="#">skills</a></li>
<li><a href="#">blog</a></li>
</ul>
<div class="links">
<a title="Instagram" href="#"><i class='bx bxl-instagram-alt'></i></a>
<a title="Linkedin" href="#"><i class='bx bxl-linkedin'></i></a>
<a title="Twitter" href="#"><i class='bx bxl-twitter'></i></a>
</div>
</nav>
</div>
<div class="wrapper">
<div class="cols cols0">
<span class="topline">Hello</span>
<h1>I'm <span class="multiText"></span></h1>
<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Magnam officia repellat beatae enim quis?</p>
<div class="btns">
<button>download CV</button>
<button>hire me</button>
</div>
</div>
<div class="cols cols1">
<div class="imgbox">
<img src="/Images/sanju.jpg">
</div>
</div>
</div>
<!-- Load library from the CDN -->
<script src="https://unpkg.com/typed.js@2.0.16/dist/typed.umd.js"></script>
<!-- Setup and start animation! -->
<script src="/JavaScript/script.js"></script>
</body>
</html>