-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathindex.html
38 lines (34 loc) · 1.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite App</title>
</head>
<body>
<header class="header">
<nav class="nav" id="js-nav">
<a data-page="index" href="./index.html">TOP</a>
<a data-page="data-table" href="./data-table.html">DATA TABLE</a>
<a data-page="data-form" href="./data-form.html">DATA FORM</a>
</nav>
</header>
<section class="splide" aria-label="Splide Basic HTML Example">
<div class="splide__track">
<ul class="splide__list">
<li class="splide__slide">Slide 01</li>
<li class="splide__slide">Slide 02</li>
<li class="splide__slide">Slide 03</li>
</ul>
</div>
</section>
<div class="container">
<h1>Complete PROJECT</h1>
<p>Sample text here ... Sample text here ... Sample text here ... Sample text here ... Sample text here ... Sample text here ...</p>
<p>Sample text here ... Sample text here ... Sample text here ... Sample text here ... Sample text here ... Sample text here ...</p>
<p>Sample text here ... Sample text here ... Sample text here ... Sample text here ... Sample text here ... Sample text here ...</p>
</div>
<script type="module" src="/assets/scripts/main.js"></script>
</body>
</html>