Eight
Eight
DOCTYPE html>
<html>
<head>
<meta name = "viewport" content = "width=device-width, initial-scale =
1.0">
<style>
header {
text-align: center;
background-color: lightslategray;
font-size: 50px;
color: whitesmoke;
}
.contain {
display: grid;
background-color: lightgray;
grid-template-columns: auto auto;
padding: 5px;
grid-gap: 5px;
height: 250px;
}
.item1 {
background-color: lightslategray;
margin: 5px;
padding: 5px;
letter-spacing: 1px;
}
.item2 {
background-color: lightslategray;
margin: 5px;
padding: 5px;
letter-spacing: 1px;
}
footer {
background-color: lightslategray;
text-align: center;
color: white;
padding: 10px;
}
div.item1{
&ul{
color: wheat;
}
&li{
text-decoration: none;
font-style: italic;
}
}
</style>
</head>
<body>
<header>
<div>Horlartech</div>
</header>
<div class="contain">
<div class="item1">
<ul>
<li>
<a href="#">Home</a>
</li>
<li>
<a href="#">Jobs</a>
</li>
<li>
<a href="#">Library</a>
</li>
<li>
<a href="#">Articles</a>
</li>
<li>
<a href="#">Certification</a>
</li>
</ul>
</div>
<div class="item2">
<h2>Welcome to Horlartech point</h2>
<p>Horlartech.com is a dedicated website to provide
quality online education in the domains of Computer Science,
Information Technology, Programming Languages, and
other Engineering as well as Management subjects.
</p>
</div>
</div>
<footer>
<div>Copyrights © TUTORIALS POINT (INDIA) PRIVATE LIMITED. All
rights reserved.</div>
</footer>
</body>
</html>