-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprototype.html
58 lines (52 loc) · 1.9 KB
/
prototype.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Prototype</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body><!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Frankenstein</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
<style>
body {
font-family: 'Poppins', sans-serif;
}
header {
background-color: #333;
color: #fff;
padding: 2rem;
text-align: center;
}
main {
padding: 2rem;
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 1rem;
}
</style>
</head>
<body>
<header>
<h1 class="text-3xl">Frankenstein</h1>
</header>
<main>
<p class="text-lg mb-4">Frankenstein is a novel by Mary Shelley that tells the story of Victor Frankenstein, a young scientist who creates a grotesque creature in an unorthodox scientific experiment. The novel explores the themes of power, ambition, and the consequences of playing god.</p>
<img src="https://source.unsplash.com/random/?frankenstein" alt="Frankenstein" class="w-full h-auto mb-4">
<p class="text-lg">Learn more about Frankenstein <a href="https://en.wikipedia.org/wiki/Frankenstein" class="text-blue-500">here</a>.</p>
</main>
<footer>
<p>© 2022 Frankenstein Wiki. All Rights Reserved.</p>
</footer>
</body>
</html></body>
</html>