-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (30 loc) · 1.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <!-- required to handle IE -->
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- required to handle mobiles -->
<title>Home</title>
<link rel="shortcut icon" type="image/png" href="/baitman.png">
<link rel="stylesheet" href="main.css">
</head>
<body class="dark-theme">
<div id="helloworld">
<div id="helloworld-image">
<img src="baitman.png" alt="baitman">
</div>
<div id="helloworld-text">
<span class="helloworld-title" data-period="3000" data-rotate='[ "test1", "test2", "test3 "]'></span>
</div>
</div>
<div id="menu">
<div id="menu-items">
<a id="about" class="menu-item" href="/"></a>
<a id="projects" class="menu-item" href="/"></a>
<a id="contacts" class="menu-item" href="/"></a>
</div>
</div>
<script src="app.js"></script>
<noscript>JavaScript is disabled in your browser. Please enable it to view the content.</noscript>
</body>
</html>