-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (46 loc) · 2.01 KB
/
index.html
File metadata and controls
49 lines (46 loc) · 2.01 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Border Radius</title>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:wght@300&family=Poiret+One&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="js/script.js"></script>
</head>
<body>
<div id="header">
<h1>Border Radius</h1>
</div>
<div id="content">
<div id="box"></div>
<div class="space"></div>
<div class="border-values">
<label for="fname" >border-top-left-radius:</label>
<input type="number" placeholder="0%" id="tl" max="50">
<div class="space"></div>
<label for="fname">border-top-right-radius:</label>
<input type="number" placeholder="0%" id="tr" max="50">
<div class="space"></div>
<label for="fname">border-bottom-right-radius:</label>
<input type="number" placeholder="0%" id="br" max="50">
<div class="space"></div>
<label for="fname">border-bottom-left-radius:</label>
<input type="number" placeholder="0%" id="bl" max="50">
<div class="space"></div>
<button onclick="tryBorderRadius()">Try</button>
<button onclick="copyBorderRadius()">Copy</button>
</div>
</div>
<div id="footer">
<footer>
<p>Inpired by <a href="https://github.com/florinpop17/app-ideas" target="_blank">florinpop17</a></p>
<p>Developed by Matheus Almeida</p>
<p> <a href="https://github.com/tthheusalmeida" target="_blank">
<img src="img/github-image.png" alt="GitHub"></a>
<a href="https://www.linkedin.com/in/matheus-almeida-602139182/" target="_blank">
<img src="img/linkedin.png" alt="LinkedIn"></a></p>
</footer>
</div>
</body>
</html>