-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
105 lines (100 loc) · 5.54 KB
/
index.html
File metadata and controls
105 lines (100 loc) · 5.54 KB
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
<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 href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous">
<link rel="stylesheet" href="./assets/css/main.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=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<link rel="shortcut icon" href="./assets/content/Klema_dummy_logo.png" type="image/x-icon">
<title>TOS Template Site | Adam Klement</title>
<meta content="Docs Template | Adam Klement" property="og:title" />
<meta content="Edit this line and tell people what is this site about!" property="og:description" />
<meta content="https://your-domain.com" property="og:url" />
<meta content="https://your-domain.com/assets/image.png" property="og:image" />
<meta content="#4d67ff" data-react-helmet="true" name="theme-color" />
</head>
<body>
<div class="container content col-xl-5 col-lg-7 col-md-9 col-12 px-0 pt-4">
<div class="px-4">
<a href="https://adam-klement.cz" class="btn btn-outline-light">Go back to main site</a>
<h1 class="display-1 mb-3 mt-4">Your favourite header</h1>
<h5>Last update: 15:35 10/13/2022</h5>
</div>
<div class="another-content px-4 mt-3 pt-4">
<h1 class="display-1">Display 1</h1>
<h1 class="display-2">Display 2</h1>
<h1 class="display-3">Display 3</h1>
<h1 class="display-4">Display 4</h1>
<h1 class="display-5">Display 5</h1>
<h1 class="display-6">Display 6</h1>
<h1>Font size H1</h1>
<h2>Font size H2</h2>
<h3>Font size H3</h3>
<h4>Font size H4</h4>
<h5>Font size H5</h5>
<h6>Font size H6</h6>
<p>You can use the mark tag to <mark>highlight</mark> text.</p>
<p><del>This line of text is meant to be treated as deleted text.</del></p>
<p><s>This line of text is meant to be treated as no longer accurate.</s></p>
<p><ins>This line of text is meant to be treated as an addition to the document.</ins></p>
<p><u>This line of text will render as underlined.</u></p>
<p><small>This line of text is meant to be treated as fine print.</small></p>
<p><strong>This line rendered as bold text.</strong></p>
<p><em>This line rendered as italicized text.</em></p>
<p><abbr title="attribute">attr</abbr></p>
<p><abbr title="HyperText Markup Language" class="initialism">HTML</abbr></p>
<figure>
<blockquote class="blockquote">
<p>A well-known quote, contained in a blockquote element.</p>
</blockquote>
<figcaption class="blockquote-footer">
Someone famous in <cite title="Source Title">Source Title</cite>
</figcaption>
</figure>
<ul class="list-unstyled">
<li>This is a list.</li>
<li>It appears completely unstyled.</li>
<li>Structurally, it's still a list.</li>
<li>However, this style only applies to immediate child elements.</li>
<li>Nested lists:
<ul>
<li>are unaffected by this style</li>
<li>will still show a bullet</li>
<li>and have appropriate left margin</li>
</ul>
</li>
<li>This may still come in handy in some situations.</li>
</ul>
<ul>
<li>Eggs</li>
<li>Milk</li>
<li>Wheat</li>
</ul>
<img src="https://images.pexels.com/photos/11662228/pexels-photo-11662228.jpeg?auto=compress&cs=tinysrgb&w=1600&lazy=load" alt="" class="img-fluid">
<figcaption class="figure-caption">A caption for the above image.</figcaption>
</div>
<footer class="px-3 pt-5 pb-3">
<div class="row">
<div class="col-md">
<p class="mb-0">©️ Company 2022 | All rights reserved.</p>
<p class="small text-muted">User Interface made by <a href="https://adam-klement.cz" target="_Blank">Adam Klement</a></p>
</div>
<div class="col-md">
<div class="row g-2">
<div class="col-md">
<a href="https://adam-klement.cz" class="btn btn-primary w-100">Hello world!</a>
</div>
<div class="col-md">
<a href="https://adam-klement.cz" class="btn btn-outline-light w-100">Another button?</a>
</div>
</div>
</div>
</div>
</footer>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-OERcA2EqjJCMA+/3y+gxIOqMEjwtxJY7qPCqsdltbNJuaOe923+mo//f6V8Qbsw3" crossorigin="anonymous"></script>
</body>
</html>