mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-02 07:30:08 +00:00
12 lines
212 B
HTML
12 lines
212 B
HTML
|
<!doctype html>
|
||
|
<html><head>
|
||
|
<title>Circular border</title>
|
||
|
<style>
|
||
|
div { width: 50px; height: 50px;
|
||
|
border: 10px solid black;
|
||
|
border-radius: 10px;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body><div></div></body></html>
|