Code backup
This commit is contained in:
2026-05-10 16:59:01 +02:00
commit 368d6fafea
796 changed files with 315310 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<title> Vertical Division<title>
</head>
<body>
<div style="background-color: blue; width: 100%; height: 650px;">
<div style="background-color: red; width: 50%; height: 550px; float:left;">
This is the first division to have a vertical alignment.
</div>
<div style="background-color: yellow; width:50%; height: 550px; float:left;">
This is the second division to have a vertical alignment.
</div>
</div>
</body>
</html>