Files
VSC/Web/split.html
T
claudio 368d6fafea Issue
Code backup
2026-05-10 16:59:01 +02:00

19 lines
566 B
HTML

<!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>