-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
110 lines (108 loc) · 3.42 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
http-equiv="X-UA-Compatible"
content="IE=edge"/>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<meta
name="description"
content="Simplified Border radius generator for CSS application, easy and reliable"
/>
<meta name="msvalidate.01" content="1039F702956748792E92023DDB7F7DCA" />
<meta name="google-site-verification" content="Z4c9Mk0mfvx8urVBG1cMaGCx852rCiXM83q6C2QLdyg" />
<link rel="sitemap" type="application/xml" title="Sitemap" href="/sitemap.xml" />
<title>Border Radius Generator</title>
<link
rel="icon"
type="image/x-icon"
href="compass-drafting-solid.svg"
/>
<link
rel="stylesheet"
href="style.css"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0"
/>
<script
src="https://kit.fontawesome.com/b62766c4e7.js"
crossorigin="anonymous"
></script>
<script
defer
src="script.js"
></script>
</head>
<body>
<div class="bg"></div>
<header>
<h1>Border Radius Generator</h1>
<span class="material-symbols-outlined"> track_changes </span>
</header>
<div class="container">
<div class="shape">
<div class="mode">
<span>Simple</span><span class="switcher"></span><span>Complex</span>
</div>
<div class="item-container active">
<span class="up"></span><span class="right"></span
><span class="bottom"></span><span class="left"></span
><span class="item"
><img
src="abacus.gif"
alt="abacus"
/></span>
</div>
<div class="item-container">
<span class="up1"></span><span class="up2"></span
><span class="right1"></span><span class="right2"></span
><span class="bottom1"></span><span class="bottom2"></span
><span class="left1"></span><span class="left2"></span
><span class="item"
><img
src="abacus.gif"
alt="abacus"
/></span>
</div>
</div>
<div class="code">
<div class="block">
border-radius:
<div class="box">
<div class="value">
<span class="radius-1">50%</span>
<span class="radius-2">50%</span>
<span class="radius-3">50%</span>
<span class="radius-4">50%</span>
/
<span class="radius-5">50%</span>
<span class="radius-6">50%</span>
<span class="radius-7">50%</span>
<span class="radius-8">50%</span>
</div>
<div class="copy"><i class="fa-regular fa-copy"></i></div>
</div>
</div>
</div>
</div>
<footer>
<div class="owner">
<a href="https://github.com/AnasElkalla"
>2023 © Anas Elkalla <i class="fa-brands fa-github"></i
></a>
</div>
Gif ©
<a
href="https://www.flaticon.com/free-animated-icons/education"
title="education animated icons"
>Education animated icons created by Freepik - Flaticon</a
>
</footer>
</body>
</html>