-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (61 loc) · 2.24 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Stylise - Cool and Awesome Name Customization</title>
<link rel="icon" href="assets/photo.jpg" type="image/jpg" />
<link rel="stylesheet" href="assets/style.css" media="all" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@splidejs/[email protected]/dist/css/splide.min.css"
/>
<!-- *Themes* -->
<!-- https://cdn.jsdelivr.net/npm/@splidejs/[email protected]/dist/css/themes/splide-skyblue.min.css -->
<!-- https://cdn.jsdelivr.net/npm/@splidejs/[email protected]/dist/css/themes/splide-sea-green.min.css -->
<script src="assets/color.js"></script>
<script src="assets/hash.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@splidejs/[email protected]/dist/js/splide.min.js"></script>
<!-- *General SMO* -->
<meta name="keywords" content="stylise" />
<meta
name="description"
content="Cool and Awesome Name Customization tool online. Inspired by a friend's username 😂"
/>
<meta author="Rayyan Nafees" />
<!-- *Facebook SMO* -->
<meta property="og:site_name" content="Stylise.io" />
<meta property="og:title" content="Stylise - by Rayyan Nafees" />
<meta
property="og:description"
content="Cool and Awesome Name Customization tool online. Inspired by a friend's username 😂"
/>
<meta property="og:image" itemprop="image" content="assets/photo.jpg" />
<meta property="og:type" content="website" />
<meta property="og:url" content="stylise.io" />
</head>
<body>
<div class="container">
<div class="box-a">
<img
class="thumbnail"
src="assets/photo.jpg"
height="70px"
width="80px"
alt=""
/>
<div class="music">
<h2>Stylise</h2>
<p>By Rayyan Nafees</p>
</div>
</div>
<input class="el-b" placeholder="Type your name" />
<!-- What doesn't kill you makes you wish you were dead.</p> -->
<span class="el-c">Copy</span>
</div>
</body>
<script>
document.body.onload = () => document.querySelector("input").focus();
</script>
<script src="stylise.js"></script>
</html>