-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbeta.html
25 lines (25 loc) · 1.06 KB
/
beta.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sno.js</title>
<link rel="stylesheet" href="https://guyotjs.github.io/bcss/bc.css">
<link rel="stylesheet" href="https://guyotjs.github.io/bcss/bc-colors.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="main bg-night"></div>
<div class="true-center white">
<p class="f-xl">Sno.JS <a href="https://github.com/snojs"><i class="white fa fa-github"></i></a></p><br/>
<p>Building the web <span class="pumpkin bold">{ your way }.</span></p>
<p>Learn more <a href="https://snojs.github.io/tutorial" class="surf">Here</a>!</p><br/>
<button onclick="copy('<script src=\'https://snojs.github.io/sno/crystal.js\'></script>')" class="bg-night no-border f">Click to add it to <b>your</b> project.</button>
</div>
<script>
function copy(id){
navigator.clipboard.writeText(id);
}
</script>
</body>
</html>