-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (34 loc) · 963 Bytes
/
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
<!DOCTYPE html>
<html lang="zxx">
<head>
<meta charset="utf-8">
<title>Personal Portfolio Website</title>
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<!-- font awesome -->
<link rel="stylesheet" type="text/css" href="css/font-awesome.css">
<!-- main css -->
<link rel="stylesheet" type="text/css" href="css/style.css">
<!-- default color skin -->
<link rel="stylesheet" type="text/css" href="css/skins/color-1.css">
</head>
<body>
<!-- header start -->
<header class="header">
<div class="container">
<div class="row justify-content-between">
<div class="logo">
<a href="index.html">W</a>
</div>
<div class="hamburger-btn">
<span></span>
</div>
</div>
</div>
</header>
<!-- header end -->
<!-- main js -->
<script src="js/main.js"></script>
<!-- style switcher js -->
<script src="js/style-switcher.js"></script>
</body>
</html>