-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (44 loc) · 1.64 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
<!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" />
<title>Wedding Invitation</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="envelope fold">
<div class="top"></div>
<div class="left"></div>
<div class="back">
<div class="paper">
<img class="flower" src="assets/viney_flower.svg" />
<div class="container">
<span class="title"
>Whereas recognition of the inherent dignity</span
>
<span class="content mb-1"
>No one shall be subjected to arbitrary arrest, detention or
exile. Everyone is entitled in full equality to a fair and public
hearing by an independent and impartial tribunal, in the
determination of his rights and obligations and of any criminal
charge against him. No one shall be subjected to arbitrary
interference with his privacy, family, home or correspondence, nor
to attacks upon his honour and reputation. Everyone has the right
to the protection of the law against such interference or
attacks.</span
>
<span class="content"
>No one shall be subjected to arbitrary arrest, detention or
exile.</span
>
</div>
</div>
</div>
<div class="right"></div>
<div class="bottom"></div>
</div>
</body>
<script src="main.js"></script>
</html>