-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
88 lines (73 loc) · 2.85 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
<!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="apple-touch-icon" sizes="180x180" href="./favicon/">
<link rel="icon" type="image/png" sizes="32x32" href="./favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./favicon/favicon-16x16.png">
<link rel="manifest" href="./favicon/site.webmanifest">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<title>UFO</title>
<link rel="stylesheet" href="./css/main.css">
</head>
<body class="body">
<main class="main-content">
<div class="left-column">
<h1 class="first-line">404</h1>
<p class="second-line">Page not found</p>
<a class="btn" href="#">Go to home</a>
</div>
<img class="logo" src="./img/ufo.png" alt="UFO lekste">
</main>
</body>
</html>
<!--
STILIAUS SABLONAI;
savybes-pavadinimas: reiksme;
savybe: reiksme;
KONKRECIOS SAVYBES:
background-color: red;
color: orange;
font-size:40px;
font-family: Arial;
font-family: Verdana;
font-family: Helvetica;
font-weight: normal; -> 400;
font-weight: bold; -> 700;
font-weight: 100...900;
text-transform: uppercase;
text-transform: lowercase;
text-transform: capitalize;
text-decoration: none;
text-decoration: underline;
Elementu stumdymas tarpusavyje:
margin: 100px; visomis kryptimis aplink si elementa
margin-top: 100px;
margin-right: 100px;
margin-bottom: 100px;
margin-left: 100px;
Atstumas tarp elemento krastines ir jo turinio:
padding: 100px; visomis kryptimis aplink si elementa
padding-top: 100px;
padding-right: 100px;
padding-bottom: 100px;
padding-left: 100px;
Elementu atvaizdavimas:
display: block; visi block elementai krenta vienas po kitu(dauguma elementu)
display: inline; elementas elgiasi kaip zodis tekste
display: inline-block; jeigu elementai telpa i viena eilute - suguls; jei netelpa - sekantis krenta i nauja eilute;
jei jame yra daugiau turinio nei tilptu pas "teva",
tai jo max plotis yra 100%
Priverstinis elementu sustumimas pasirinkta kyptimi:
float: left;
float: right;
border: 1px solid white;
border: 1px dotted white;
border: 1px dashed white;
border-radius: 0; neuzapvalinta niekaip (staciakampis)
border-radius: 50%; "kiausinio forma" - nuo 0% iki 50% imtinai
border-radius: 50px; "stadiono forma" - nuo 0x iki [puse trumpiausios krastines]
-->