-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebsite.html
More file actions
55 lines (50 loc) · 2.12 KB
/
website.html
File metadata and controls
55 lines (50 loc) · 2.12 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
50
51
52
53
54
55
<!DOCTYPE html>
<html>
<title>App Name Here</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">
<link href="https://fonts.googleapis.com/css?family=Roboto+Slab" rel="stylesheet">
<style>
body, html {height: 100%}
body,h1,h2,h3,h4,h5,h6 {font-family: "Roboto Slab", serif}
.menu {display: none}
.bgimg {
background-repeat: no-repeat;
background-size: cover;
background-image: url("https://image.freepik.com/free-photo/view-above-hand-woman-holding-phone-in-coffee-shop-vintage-filter_1627-1638.jpg");
min-height: 90%;
}
</style>
<body>
<!-- Header with image -->
<header class="bgimg w3-display-container w3-grayscale-min" id="home">
<div class="w3-display-middle w3-center">
<span class="w3-text-white w3-hide-small" style="font-size:100px"><br>Nothing to Look at?</span>
<span class="w3-text-white w3-hide-large w3-hide-medium" style="font-size:60px"><b>thin<br>Nothing to Look at?</b></span>
<p><a href="#menu" class="w3-xxlarge w3-black">We've been there</a></p>
</div>
</header>
<!-- About Container -->
<div class="w3-container w3-padding-64 w3-red w3-grayscale w3-xlarge" id="about">
<div class="w3-content">
<h1 class="w3-center w3-jumbo" style="margin-bottom:64px">About</h1>
<p>yo.</p>
<p><strong>The Chef?</strong> Mr. Italiano himself</p>
<p>We are proud of our interiors.</p>
</div>
</div>
<!-- Contact -->
<div class="w3-container w3-padding-64 w3-blue-grey w3-grayscale-min w3-xlarge">
<div class="w3-content">
<h1 class="w3-center w3-jumbo" style="margin-bottom:64px">Sign Up</h1>
<p>Text (951) 667-1794 to start now!</p>
<form action="/action_page.php" target="_blank">
<p><input class="w3-input w3-padding-16 w3-border" type="text" placeholder="Name" required name="Name"></p>
<p><input class="w3-input w3-padding-16 w3-border" type="number" placeholder="Phone Number" required name="PhoneNumber"></p>
<p><button class="w3-button w3-light-grey w3-block" type="submit">SEND MESSAGE</button></p>
</form>
</div>
</div>
</body>
</html>