-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (28 loc) · 711 Bytes
/
index.html
File metadata and controls
28 lines (28 loc) · 711 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>
J_128 | Home Page
</title>
<style>
#bkg {
min-height:100vh;
background-image: radial-gradient(circle closest-corner, #5a0000, #ff4600, #000000);
}
#ring {
height:50vh;
width:50vh;
border-radius: 50%;
background-image: radial-gradient(circle farthest-side, rgba(0, 0, 0, 0) 74%, #7f7f1f 75%, #7f7f1f 80%, #cfff3f 82%, #ffffcf 85%, #ffc81f 88%, #ffc81f 90%, rgba(0, 0, 0, 0) 92%);
</style>
</head>
<body id=bkg>
<div align=center>
<h1>Currently a CSS testing ground</h1>
<hr>
</div>
<div align=center>
<div id=ring></div>
</div>
</body>
</html>