-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (25 loc) · 890 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
<!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="style.css">
<title>Sirendema</title>
</head>
<body class="index-page">
<div id="start-page">
<img src="img/fairy.png" alt="Fairy Image">
<div class="start-content">
<h1 class="start-title">Sirendema</h1>
<button class="cta" onclick="goToHome()">
<span><a href="home.html" class="nav-link">Visit my page</a></span>
<svg viewBox="0 0 13 10" height="10px" width="15px">
<path d="M1,5 L11,5"></path>
<polyline points="8 1 12 5 8 9"></polyline>
</svg>
</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>