-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (73 loc) · 3.13 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
<!DOCTYPE html>
<html lang="ru">
<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">
<meta name="keywords" content="html, test project, css, tags">
<meta name="description" content="Это тестовый проект по html css">
<title>Test project_1</title>
</head>
<body>
<h1>Hello, HTML!</h1>
<img src="https://raw.githubusercontent.com/notdeadman/resume/main/test_image.jpg" width="150" alt=""><!--аватарка для портфолио с необязательным свойством width-->
<p>Это базовый бесплатный курс по программированию на html и css. Я начал проходить этот путь ещё <strong>в 2021 году</strong> и теперь снова начал проходить его сначала. Надеюсь у меня всё получится в <em> этот раз.</em>
</p>
<p><strong>Как со мной связаться:</strong></p>
<a href="https://vk.com/sura2113" target="_blank">ВКонтакте</a>
<hr>
<h2>Мои хобби</h2>
<ul>
<li>Прохождение DS1</li>
<li>Программирование на html/css</li>
<li>Изобретения</li>
<li>Бритьё головы</li>
</ul>
<hr>
<h2>Опыт работы</h2>
<table>
<thead>
<th>Название компании</th>
<th>Должность</th>
<th>Годы работы</th>
</thead>
<tbody>
<tr>
<td>Озон</td>
<td>Супервайзер</td>
<td>2020-по н.в.</td>
</tr>
<tr>
<td>Забери-Товар.рф</td>
<td>Менеджер</td>
<td>2020-2020</td>
</tr>
<tr>
<td>Разные компании</td>
<td>Разные должности</td>
<td>Предыдущие годы</td>
</tr>
</tbody>
</table>
<hr>
<h2>Связаться со мной</h2>
<form action="/">
<div>
<label for="name">Ваше имя:</label>
<input type="text" id="name" placeholder="Введите имя">
</div>
<div>
<label for="email">Ваш email:</label>
<input type="email" id="email" placeholder="Введите email">
</div>
<div>
<label for="message">Ваше сообщение:</label>
<br>
<textarea name="" id="" cols="28" rows="5" placeholder="Введите сообщение..." ></textarea>
</div>
<div>
<input type="submit" value="Отправить!">
</div>
</form>
</body>
</html>