-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
103 lines (80 loc) · 3.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Landing Page - A TOR Excercise!</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@1,100&display=swap" rel="stylesheet">
</head>
<body>
<div class="header-container">
<div class="header">
<img src="img/cropped-600.png" width="200" style="filter: brightness(0) invert(1);">
</div>
<div class="navbar">
<ul>
<div class="navitems">
<li><a href="#">Portfolio</a></li>
<li><a href="#">Rules</a></li>
<li><a href="#">About us</a></li>
</div>
</ul>
</div>
</div>
<div class="bodypartone-container">
<div class="bodyleft">
<h1 class="titletext">Welcome to Formality</h1>
<p class="boxtext">This site is a test to see if we can make a landing page from scratch.</p>
<a href="https://nu.nl" target="_blank" class="button">Sign Up</a>
</div>
<div class="bodyright">
<img src="img/back.jpg" width="550" class="rcorner";>
</div>
</div>
<div class="bodyparttwo-container">
<div class="bodyparttwo-left">
<h1>Just some information about inks</h1>
</div>
<div class="bodyparttwo-right">
<ul>
<li><img class="rounded-corners" src="img/black.jpg" width="150";><br>
Just some text under the image</li>
<li><img class="rounded-corners" src="img/kuro-sumi-imperial-lavender-secret.jpg" width="150";><br>
Just some text under the image</li>
<li><img class="rounded-corners" src="img/world-famous-limitless-pure-yellow-30-ml.jpg" width="150";><br>
Just some text under the image</li>
<li><img class="rounded-corners" src="img/kuro1.jpg" width="150";><br>
Just some text under the image</li>
</ul>
</div>
</div>
<div class="bodylast">
<p class="middletext">Express yourself through your art – whether it’s your drawings in a sketchpad, tattoos on your skin, the shade of your lipstick, or the clothes that you wear.</p>
<p class="quotedby">- Kat Von D</p>
</div>
<div class="bottompart">
<div class="part1">
<ul class="lastlist">
<li>
<h1>Call to action!</h1>
Sign up for our product by clicking that button over there!
</li>
<li>
<a href="https://nu.nl" target="_blank" class="button2">Sign Up</a>
</li>
</ul>
</div>
</div>
<footer>
<div class="footer">
Copyright © The Odin Project - Formality - 2024
</div>
</footer>
</body>
</html>