-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwork.html
73 lines (72 loc) · 3.07 KB
/
work.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
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
placeholder="viewport"
content="width=device-width, initial-scale=1.0"
/>
<title>CODE-YOUR-OWN</title>
<link rel="stylesheet" href="./styles/work.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Love+Ya+Like+A+Sister&display=swap"
rel="stylesheet"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Hepta+Slab&display=swap"
rel="stylesheet"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Hepta+Slab:wght@800&display=swap"
rel="stylesheet"
/>
</head>
<body>
<nav>
<div>
<div id="logo">
<img src="./images/Logo.png" alt="[:;]" height="40px" width="40px" />
</div>
<div class="brand-name">Code Your Own</div>
</div>
</nav>
<h1>Add your links</h1>
<form id="form">
<input type="text" placeholder="Name" id="Name" />
<input type="url" placeholder="Website" id="Website" />
<input type="email" placeholder="Gmail" id="Gmail" />
<input type="number" placeholder="Contact" id="Contact" />
<input type="url" placeholder="Twitter" id="Twitter" />
<input type="url" placeholder="Github" id="Github" />
<input type="url" placeholder="Linkedin" id="Linkedin" />
<input type="url" placeholder="Instagram" id="Instagram" />
<input type="url" placeholder="Discord" id="Discord" />
<input type="url" placeholder="Kaggle" id="Kaggle" />
<input type="url" placeholder="Spotify" id="Spotify" />
<input type="url" placeholder="Pinterest" id="Pinterest" />
<input type="url" placeholder="Youtube" id="Youtube" />
<input type="url" placeholder="Yahoo" id="Yahoo" />
<input type="url" placeholder="Snapchat" id="Snapchat" />
<input type="url" placeholder="Dribble" id="Dribble" />
<input type="url" placeholder="Behance" id="Behance" />
<input type="url" placeholder="Devfolio" id="Devfolio" />
<input type="url" placeholder="Codeforces" id="Codeforces" />
<input type="url" placeholder="Codechef" id="Codechef" />
<input type="url" placeholder="Leetcode" id="Leetcode" />
<input type="url" placeholder="Gitlab" id="Gitlab" />
<input type="url" placeholder="Bitbucket" id="Bitbucket" />
<input type="url" placeholder="Twitch" id="Twitch" />
<input type="url" placeholder="Slack" id="Slack" />
<input type="url" placeholder="Medium" id="Medium" />
</form>
<button id="btn">Generate QR</button>
</body>
</html>
<script type="module" src="./scripts/work.js"></script>