-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
74 lines (68 loc) · 3.58 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
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>FREE Online CSS3 Border Radius Generator | +20 Shapes</title>
<meta name="description" content="The NEW Online CSS Border Radius Generator, get the best border-radius playground, with +20 border-radius real examples packed in an elegant design experience" />
<meta name="keywords" content="online border-radius generator, border radius, border-radius real example shapes, css border-radius examples, border-radius copy/paste css code, use prefix with border-radius, css3 border radius, webkit border radius, firefox border radius, css template" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="app.css"></link>
<link href="https://fonts.googleapis.com/css?family=Ubuntu+Condensed" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="intro">
<h1>A Border-Radius Generator</h1>
<p>Built for lazy developers - just like you!</p>
</div>
<div class="demo-wrapper">
<input type="number" class="border-corner" id="corner-1" min="0" value="0">
<input type="number" class="border-corner" id="corner-2" min="0" value="0">
<input type="number" class="border-corner" id="corner-3" min="0" value="0">
<input type="number" class="border-corner" id="corner-4" min="0" value="0">
<div class="demo">
<div class="code"></div>
</div>
</div>
<div class="options">
<button class="shape" id="shape-1"></button>
<button class="shape" id="shape-2"></button>
<button class="shape" id="shape-3"></button>
<button class="shape" id="shape-4"></button>
<button class="shape" id="shape-5"></button>
<button class="shape" id="shape-6"></button>
<button class="shape" id="shape-7"></button>
<button class="shape" id="shape-8"></button>
<button class="shape" id="shape-9"></button>
<button class="shape" id="shape-10"></button>
<button class="shape" id="shape-11"></button>
<button class="shape" id="shape-12"></button>
<button class="shape" id="shape-13"></button>
<button class="shape" id="shape-14"></button>
<button class="shape" id="shape-15"></button>
<button class="shape" id="shape-16"></button>
<button class="shape" id="shape-17"></button>
<button class="shape" id="shape-18"></button>
<button class="shape" id="shape-19"></button>
<button class="shape" id="shape-20"></button>
<hr>
<button id="copy-btn">Copy Code</button>
<hr>
<p class="contribute">Want to improve it? <a href="https://github.com/elharony/Border-Radius.online">Fork on GitHub 💻</a></p>
</div>
<div class="popup"><span class="message">Copied!</span></div>
</div>
<script src="app.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-128978734-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-128978734-1');
</script>
</body>
</html>