3 estilos en la pagina web 1.formal
- color índigo
/* formal.css */
body {
font-family: 'Georgia', serif;
background-color: #f4f4f9;
color: #333;
margin: 0;
padding: 20px;
}
header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
main {
font-size: 18px;
line-height: 1.6;
}
h1, h2 {
font-weight: bold;
color: #444;
}
a {
color: #0056b3;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 10px;
position: fixed;
bottom: 0;
width: 100%;
}
input[type="submit"] {
background-color: #444;
color: #fff;
padding: 10px 20px;
border: none;
cursor: pointer;
}
/* colorful.css */
body {
font-family: 'Comic Sans MS', cursive, sans-serif;
background-color: #fffbcc;
color: #333;
margin: 0;
padding: 20px;
}
header {
background-color: #ff66b2;
color: #fff;
padding: 20px;
text-align: center;
border-radius: 10px;
}
main {
font-size: 18px;
line-height: 1.6;
}
h1, h2 {
color: #ff66b2;
}
a {
color: #ff9933;
text-decoration: none;
font-weight: bold;
}
a:hover {
color: #33cc33;
}
footer {
background-color: #ff66b2;
color: #fff;
text-align: center;
padding: 10px;
border-radius: 10px;
position: fixed;
bottom: 0;
width: 100%;
}
input[type="submit"] {
background-color: #33cc33;
color: #fff;
padding: 10px 20px;
border: none;
cursor: pointer;
border-radius: 5px;
}
color minimalista
/* minimal.css */
body {
font-family: 'Arial', sans-serif;
background-color: #ffffff;
color: #333;
margin: 0;
padding: 20px;
}
header {
background-color: #f8f8f8;
color: #333;
padding: 20px;
text-align: center;
border-bottom: 1px solid #ccc;
}
main {
font-size: 16px;
line-height: 1.8;
}
h1, h2 {
color: #333;
font-weight: normal;
}
a {
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
footer {
background-color: #f8f8f8;
color: #333;
text-align: center;
padding: 10px;
border-top: 1px solid #ccc;
position: fixed;
bottom: 0;
width: 100%;
}
input[type="submit"] {
background-color: #007bff;
color: #fff;
padding: 10px 20px;
border: none;
cursor: pointer;
border-radius: 3px;
}