-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
107 lines (98 loc) · 2.04 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="eng">
<head>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Josefin Sans">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Sacramento">
<style>
@font-face {
font-family: myFirstFont;
src: url(Handletters.otf);
}
body {
background-color: beige;
}
body {
background-image: url(https://miro.medium.com/max/3600/1*k92-ZChOfryiqAKb59peBg.jpeg);
font-family: 'Roberto';
}
h1 {
color: white;
text-align: left;
font-family: "Sacramento";
font-weight: lighter;
}
h2{
color: white;
font-family: 'Josefin Sans';
left: 0;
line-height: 200px;
margin-top: -100px;
position: absolute;
text-align: center;
top: 40%;
width: 100%;
font-size:50px;
font-weight: 600;
}
hr{
border-top: 1px solid white;
left: 0;
line-height: 200px;
margin-top: -100px;
position: absolute;
text-align: center;
right: 20px;
top: 62%;
width: 90%;
}
h3{
color: white;
font-family: "Roboto";
left: 0;
line-height: 200px;
margin-top: -100px;
position: absolute;
text-align: center;
top: 50%;
width: 100%;
font-weight:300;
font-size:20px;
}
.center {
text-align: center;
}
.button {
border-radius: 25px;
background-color: white;
border: none;
color: black;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
font-family: 'Roboto';
position: absolute;
top: 55%;
right: 45%;
}
}
p {
font-family: 'Roboto';
font-size: 20px;
}
</style>
</head>
<Body>
<h1><img src="logoWhite2.png"></h1>
<h2>Cooking Made Easier</h2>
<hr style="width:40%">
<h3>We help you find the best recipes suited to your taste and stock.</h3>
<div class= "center">
<a href="html_try_2.html" class="button">Get Started</a>
</div>
</Body>
</html>