html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Image slider/ html & css</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="banner">
<div class="navbar">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Skills</a></li>
<li><a href="#">About</a></li>
</ul>
</div>
<div class="content">
<h1>DESIGN YOUR HOUSE</h1>
<p>welcome to <br>my webpage.</p>
</div>
<div>
<button type="buttom"><span></span>Like</button>
<button type="buttom"><span></span>Share</button>
</div>
css
css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
*{
margin: 0;
padding: 0;
font-family: sans-serif;
}
.banner{
width: 100%;
height: 100vh;
background-image: linear-grandient(rgba(0,0,0,0,.75)),url("Roygbv.jfif");
background-size: cover;
background-position: center;
}
.navbar{
width: 90%;
margin: auto;
padding: 37px 0;
display: flex;
align-items: center;
justify-content: space-between;
}
.navbar ul li{
list-style: none;
display: inline-block;
margin: 0 20px;
position: relative;
}
js
js
1
BROWSER
Console
Run