-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
85 lines (71 loc) · 2.25 KB
/
index.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<html>
<title>Techie Website for October</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css" />
<style>
body {
font-family: "Times New Roman", Georgia, Serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "Playfair Display";
letter-spacing: 5px;
}
</style>
<body>
<!-- Navbar (sit on top) -->
<div class="w3-top">
<div
class="w3-bar w3-white w3-padding w3-card"
style="letter-spacing: 4px"
>
<a href="#home" class="w3-bar-item w3-button">Techie Website for October</a>
<!-- Right-sided navbar links. Hide them on small screens -->
<div class="w3-right w3-hide-small">
<a href="#about" class="w3-bar-item w3-button">About</a>
<a href="#menu" class="w3-bar-item w3-button">Menu</a>
<a href="#contact" class="w3-bar-item w3-button">Contact</a>
</div>
</div>
</div>
<!-- Header -->
<header
class="w3-display-container w3-content w3-wide"
style="max-width: 1600px; min-width: 500px"
id="home"
>
<img
class="w3-image"
src="/w3images/hamburger.jpg"
alt="Hamburger Catering"
width="1600"
height="800"
/>
<div class="w3-display-bottomleft w3-padding-large w3-opacity">
<h1>Techie Website for October</h1>
<p>Welcome to our clothing store!</p>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Iure similique saepe aliquid? Optio accusantium provident, sint repudiandae nobis et dolorum voluptatem odit maiores vero, quo similique rerum ab quos. Repellendus.</p>
</div>
</header>
<!-- Page content -->
<div class="w3-content" style="max-width: 1100px">
<!-- About Section -->
<div class="w3-row w3-padding-64" id="about">
<div class="w3-col m6 w3-padding-large w3-hide-small">
</div>
</div>
</div>
<hr />
</div>
<!-- End page content -->
</div>
<!-- Footer -->
<footer class="w3-center w3-light-grey w3-padding-32">
</footer>
</body>
</html>