Добавил кубик

This commit is contained in:
Ilia Miheev
2026-01-17 20:20:11 +03:00
parent aba2aefbd3
commit 01a6c7b210
4 changed files with 104 additions and 21 deletions
+23
View File
@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="./favicon.ico" type="image/x-icon">
<title>beautiful-cube</title>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<h1>beautiful-cube</h1>
<div id="wrapper">
<div class="cube">
<div class="face front">front</div>
<div class="face back">back</div>
<div class="face left">left</div>
<div class="face right">right</div>
<div class="face top">top</div>
<div class="face bottom">bottom</div>
</div>
</div>
</body>
</html>