-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbanner.html
More file actions
49 lines (44 loc) · 1.4 KB
/
Copy pathbanner.html
File metadata and controls
49 lines (44 loc) · 1.4 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hero banner</title>
<link rel="stylesheet" href="styles_css/banner.css">
<link rel="stylesheet" href="styles_css/nav.css">
<style>
body{
background-color: rgb(138, 242, 242);
max-width: 1280px;
border: 3px solid red;
margin: 0px auto;/*top bottom e must -0 + left right auto*/
}
</style>
</head>
<body>
<header>
<nav>
<ul>
<!-- <li><a href=""></a></li> -->
<li><a href="index.html">Flex</a></li>
<li><a href="about.html">About</a></li>
<li><a href="banner.html">Banner</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="nav.html">Navigation</a></li>
</ul>
</nav>
<section class="banner">
<div class="banner-content">
<h1>Hero section er kaj</h1>
<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Totam, veritatis.</p>
<button>Buy Now</button>
</div>
<div class="banner-pic">
<img src="./images/image1.png" alt="sql-image">
</div>
</section>
</header>
<main>
</main>
</body>
</html>