-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (58 loc) · 1.7 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
<!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="./index.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0"
/>
<title>Home</title>
</head>
<body>
<nav>
<a href="" id="first-link" class="selected">Home</a>
<a href="./src/pages/games/games.html">Games</a>
<a href="./src/pages/animes/animes.html">Animes</a>
<a href="./src/pages/about/about.html">About</a>
<span id="box"></span>
</nav>
<section id="hero">
<h1 id="h1">WebSamurais</h1>
<a href="#navigate">
<span class="material-symbols-outlined">
keyboard_double_arrow_down
</span>
</a>
</section>
<section id="navigate">
<a href="./src/pages/games/games.html" class="games"
><div class="content"><h3>Visit the Game catalog</h3></div></a
>
<a href="./src/pages/animes/animes.html" class="animes"
><div class="content"><h3>Visit the Anime catalog</h3></div></a
>
</section>
<script src="./src/component/navbar/navbar.js"></script>
<script src="https://unpkg.com/[email protected]/dist/typed.umd.js"></script>
<script>
var typed = new Typed("#h1", {
strings: [
"Ueb",
"Uebi",
"Webi",
"WebSaru",
"WebSamu",
"WebSarumai",
"WebSamurais",
],
stringsElement: null,
typeSpeed: 100,
backSpeed: 50,
smartBackspace: true,
backDelay: 500,
});
</script>
</body>
</html>