Prove iniziali per il nuovo portale

This commit is contained in:
martino 2024-09-07 18:13:23 +02:00
parent a8266cf3da
commit 314c1c33f5
2 changed files with 34 additions and 0 deletions

13
index.html Normal file
View File

@ -0,0 +1,13 @@
<html>
<head>
<title> </title>
<link href="main/template/base.css" rel="stylesheet" type="text/css" media="all" />
</head>
<body>
<div style="float: left; width: 500px; align-content: center; display: inline-block;">
<div class="box street">abc</div>
<div class="box phone">abc</div>
<div class="box mail">abc</div>
</div>
</body>
</html>

21
main/template/base.css Normal file
View File

@ -0,0 +1,21 @@
/* CSS di base del progetto "Vivi", iniziato in data 07 Settembre 2024 */
/* Bottoni */
.box {
width: 25%;
margin: 5px;
padding: 2%;
border: 1px solid #000000;
float: left;
}
.street {
background-color: white;
}
.phone {
background-color: green;
}
.mail {
background-color: yellow;
}