forked from FBalint/button
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
20 lines (18 loc) · 765 Bytes
/
index.html
File metadata and controls
20 lines (18 loc) · 765 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>3D Pressable Button</title>
<link rel="stylesheet" href="styles.css">
</head>
<body style="padding: 0; margin: 0; width: 100vw; height: 100vh; display: flex; justify-content: center; align-items: center;">
<div id="button" class="frame" data-href="https://github.com/gondo/button">
<img class="frame__base" src="./assets/base.svg" alt="image">
<img class="frame__key" src="./assets/key.svg" alt="image">
<img class="frame__cover" src="./assets/cover.svg" alt="image">
<span class="frame__text">Go</span>
</div>
<script src="scripts.js"></script>
</body>
</html>