-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
135 lines (118 loc) · 3.16 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@1,200&display=swap");
* {
margin: 0;
padding: 0;
border: 0;
}
body {
font-family: "Poppins", sans-serif;
background-color: #d8dada;
font-size: 19px;
max-width: 600px;
margin: 0 auto;
padding: 3%;
}
img {
max-width: 100%;
}
header {
width: 98%;
}
#logo {
max-width: 120px;
margin: 3% 0 3% 3%;
padding: 100px;
margin-left: 145px;
}
#wrapper {
background-color: #ffffff;
}
#social {
float: right;
margin: 3% 2% 4% 3%;
list-style-type: none;
}
#social > li {
display: inline;
}
#social > li > a > img {
max-width: 35px;
}
h1,
p {
margin: 3%;
}
.btn {
float:right;
margin: 0 37% 4% 0;
background-color: #6f757b;
color: #f6faff;
text-decoration: none;
font-weight: 800;
padding: 8px 12px;
border-radius: 8px;
letter-spacing: 2px;
}
hr {
height: 1px;
background-color: #303840;
clear: both;
width: 96%;
margin: auto;
}
#contact {
text-align: center;
padding-bottom: 3%;
line-height: 16px;
font-size: 12px;
color: #303840;
}
</style>
</head>
<body>
<div id="wrapper">
<header>
<div id="logo">
<img
src="https://i.ibb.co/GdBjvFh/download-removebg-preview-1.png"
style="transform: scale(2.5);"
alt=""
/>
</div>
</header>
<div class="one-col">
<h1 style="text-align:center">Today's News <br>
[Date] <br>
Summarized!</h1>
<p style="text-align:center">
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Dolorum,
eligendi beatae veniam totam ab quos. Ipsum expedita facilis
praesentium voluptates quam at provident laborum eum, id, culpa nulla
veniam nobis.
</p>
<p style="text-align:center">
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Iure non
exercitationem maxime nostrum eaque eos quaerat libero explicabo id?
Temporibus omnis qui dolorum provident debitis voluptatum veritatis
ipsa necessitatibus mollitia quaerat consequuntur, quibusdam quasi
nam? Similique voluptas voluptatibus natus assumenda.
</p>
<a href="#" class="btn">Learn more</a>
<hr />
<footer>
<p id="contact">
<a href="https://www.w3schools.com/" style="color: grey;" target="_blank">Contact</a><br />
<a href="https://www.w3schools.com/" style="color: grey;" target="_blank">Unsubscribe</a><br />
</p>
</footer>
</div>
</div>
</body>
</html>