-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (27 loc) · 984 Bytes
/
index.html
File metadata and controls
29 lines (27 loc) · 984 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rowan's Lab</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="header">
<a href="index.html" class="logo-link">
<h1 class="logo">Rowan's Lab</h1>
</a>
</header>
<div class="container">
<main class="content">
<h1 class="main-title">Let's play</h1>
<button class="sandbox-button" onclick="window.location.href='sandbox.html'">
<span class="text">Open Sandbox</span>
</button>
</main>
</div>
<script src="script.js"></script>
</body>
</html>