mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-22 11:33:03 +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>
|