-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (72 loc) · 2.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Odin-Webpage</title>
</head>
<body>
<div class='header'>
<div class='logo'>
<u>ONE PIECE</u>
</div>
<div>
<a href="">Manga</a>
<a href="">Anime</a>
<a style="padding-right:35px" href="">About</a>
</div>
</div>
<div class='hero'>
<div style="width:80vh">
<h2>One Piece is really awesome </h2>
<p>One Piece written by Eichiro Oda is the most popular manga in the world, surpassing the likes of Batman and other
multi-author comics.
</p>
<button style="border-width: 0;margin-top: 4px;">Sign up</button>
</div>
<div class='hero-image'>
<img src='images/one-piece.jpg' style="height:45vh;width: 45vw;">
</div>
</div>
<div class='random'>
<div class='info'>Some random information.</div>
<div style="display: flex;justify-content: space-around;text-align: center;">
<div style="padding-left: 100px;">
<img class='random-image' src='images/luffy.png'>
<div>The protaganist Monkey D.Luffy aka Rubber boy</div>
</div>
<div>
<img class='random-image' src='images/wings.png'>
<div>The wings of the future Pirate King</div>
</div>
<div>
<img class='random-image' src='images/whitebeard.png'>
<div>The strongest man in the world</div>
</div>
<div style="padding-right:100px;">
<img class='random-image' src='images/usopp.png'>
<div>The only God in one piece universe</div>
</div>
</div>
</div>
<div class='quote'>
<div class='quote-text'>Pirates are evil? The Marines are righteous?… Justice will prevail, you say?
But of course it will! Whoever wins this war becomes justice!</div>
<div style="text-align:right;font-size: 25px;"><b>-Donquixote Doflamingo</b></div>
</div>
<div class='action'>
<div>
<b>Call to action! It's time!</b><br>
Support one piece by clicking that button right over there!
</div>
<div>
<button style="border-color: white;border-style: solid;">Sign up</button>
</div>
</div>
<div class='footer'>
Copyright Gagan Karanth 2021
</div>
</body>
</html>