1
0
This commit is contained in:
Rémi Heredero 2024-04-05 15:28:35 +02:00
parent d56657117a
commit d665bdbf5e
Signed by: Klagarge
GPG Key ID: 3CBAC2C6CD1E8807
2 changed files with 16 additions and 3 deletions

View File

@ -2,9 +2,7 @@
<html>
<head>
<title>HTML / CSS</title>
<style>
</style>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<form method="GET" action="http://webex.sdi.hevs.ch/calc">

15
styles.css Normal file
View File

@ -0,0 +1,15 @@
body {
background-color: lightgreen;
}
input[type="number"] {
background-color: yellow;
}
input[type="submit"] {
background-color: deepskyblue;
}
input[type="reset"] {
background-color: palevioletred;
}