Design Section
In this assignment, let's build a Design Section by applying the CSS concepts we learned till now.
Instructions:
URL's given below.
Background color Hex Code values:
#12022f
#ffffff
Text color Hex Code values:
#12022f
#7b8794
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
html,
body {
min-height: 100%;
}
body {
background-position: center center;
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
}
@media (max-width: 768px) {
body {
background-image: url(images/background-mobile.jpg);
}
}
@media (min-width: 768px) and (max-width: 1024px) {
body {
background-image: url(images/background-tablet.jpg);
}
}
</style>
</head>
<body>
</body>
</html>
Comments
Leave a comment