-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
111 lines (106 loc) · 2.75 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
104
105
106
107
108
109
110
111
<!-- @format -->
<!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
href="https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
<title>Document</title>
</head>
<body>
<div class="intro">
<h1>Tolok Oleksandr</h1>
<div>
<img
src="./img/image-0-02-05-3640670e9d75ff7424cec74b0287d4fbbeeab76427c24a0bcc711e3d235d4bbe-V.jpg"
alt=""
/>
</div>
<h4 class="slogan">I like my life!</h4>
</div>
<div class="main">
<table class="styled-table">
<thead>
<tr>
<th>Birthday:</th>
<th>25/09</th>
</tr>
</thead>
<tbody>
<tr>
<td>Gender:</td>
<td>Male</td>
</tr>
<tr class="active-row">
<td>Favorite color:</td>
<td>Blue</td>
</tr>
<thead>
<tr>
<th>Favorite food:</th>
<th>Borsh</th>
</tr>
</thead>
<tr>
<td>Pinneapple on pizza:</td>
<td>
<input type="checkbox" name="tip1" value="1" checked />Yes
<input type="checkbox" name="tip2" value="2" /> No
</td>
</tr>
</tbody>
</table>
</div>
<h4>Hobbies</h4>
<div class="hobbies">
<ul>
<li class="color">Dance</li>
<ul>
<li>Pop</li>
<li>Techno-dance</li>
<li>Liric jazz</li>
</ul>
</ul>
<ul>
<li class="color">
Traveling
</li>
<ul>
<li>All EU</li>
<li>China</li>
<li>Israel</li>
</ul>
</li>
</ul>
<ul>
<li class="color">Cooking</li>
<ul>
<li>Asian Kitchen</li>
<li>Meditarien Kitchen</li>
<li>Oriental Kitchen</li>
</ul>
</ul>
</div>
<h2>
You can always count on me when you need a good talk with coupel of beers!
</h2>
<h3>A funny story</h3>
<p>
One day i ask my director to try hair sunglasses. But instead sunglasses i
ask try her trousers.
</p>
<p class="small">I was learning Hebrew!!!</p>
<a href="https://z3no.github.io/css-introduction" class="previous"
>« Previous</a
>
<span>Tolok Oleksandr</span>
<a href="https://andygorbould.github.io/html-intro/index.html" class="next"
>Next »</a
>
</body>
</html>