-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
117 lines (93 loc) · 3.76 KB
/
index.html
File metadata and controls
117 lines (93 loc) · 3.76 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
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Sergio</title>
<link href="styles.css"
rel="stylesheet" />
</head>
<body>
<div class="container">
<div class="info">
<img src="https://sun9-69.userapi.com/s/v1/if2/p0l5-MH-OAeGleJPpffmytg_0XR0rv7tU1GbGYs18dvqnyVdj9E8aeoiqm1bO-0lLnUi8rG8W3gCksIotzpvbDVv.jpg?size=810x1080&quality=96&type=album" alt="Picture of me is here" class="avatar"/>
<div class="info-text">
<h1>Sergio Bagdasaryan</h1>
<p>I'm <strong>20 years old</strong> guy from Chelyabinsk, Russia.</p>
<p>I like working out, programming, lifting heavy shit, listening music, walking on the street, watching movies and tv-shows!</p>
<h4>My social media:</h4>
<a href="https://instagram.com/sergiobagd" target="_blank">Instagram</a>
|
<a href="https://vk.com/sergiobagd" target="_blank">VK</a>
</div>
</div>
<div class="card bg-yellow">
<h2>My hobbies:</h2>
<ol class="list">
<li>Sport</li>
<li>Programming</li>
<li>Chilling</li>
<li>Travelling</li>
<li>Movies</li>
<li>Music</li>
</ol>
</div>
<div class="card bg-green">
<h2>Job Experience</h2>
<table class="table">
<tr>
<th>Company</th>
<th>Position</th>
<th>Date</th>
</tr>
<tr>
<td>COMBICORM ARGAYASH</td>
<td class="temp">Loader</td>
<td>2019</td>
</tr>
<tr>
<td>SHABASHKA CHELYABINSK</td>
<td>Loader</td>
<td>2021</td>
</tr>
<tr>
<td>TOURMALINE CORE</td>
<td>PM & DevOps Engineer</td>
<td>2022</td>
</tr>
</table>
</div>
<div class="card bg-red">
<h2>My youtube videos</h2>
<ul class="link-list">
<li>
<a href="https://www.youtube.com/c/SeregaBagdasaryan/videos" target="_blank">Click here</a>
</li>
</ul>
</div>
<div class="contact">
<h2>Contact me</h2>
<form action="/">
<div class="row">
<div class="form-group">
<label for="name">Your name:</label>
<input type="text" id="name" placeholder="Write your name...">
</div>
<div class="form-group">
<label for="email">Your email:</label>
<input type="email" id="email" placeholder="Write your email...">
</div>
<div class="form-group">
<label for="text">Your message:</label>
<textarea id="text" cols="15" rows="2"></textarea>
</div>
</div>
<input class="btn" type="submit" value="Contact!">
</form>
</div>
</div>
<div class="position">
<div class="box"></div>
</div>
<div style="margin-bottom: 500px;"></div>
</body>
</html>