Skip to content

Commit 91bb914

Browse files
authored
Add initial cv website files
1 parent 9ef1c50 commit 91bb914

File tree

5 files changed

+147
-0
lines changed

5 files changed

+147
-0
lines changed

contacts.html

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<!DOCTYPE html>
2+
<html lang="en" dir="ltr">
3+
4+
<head>
5+
<meta charset="utf-8">
6+
<title>Contacts</title>
7+
</head>
8+
9+
<body>
10+
<h1>Contact Me</h1>
11+
<ul>
12+
<p><a href="https://wa.me/79539985318">Whatsapp</a></p>
13+
<p><a href="https://instagram.com/bazzy_xt/">Instagram</a></p>
14+
<p><a href="mailto:[email protected]">Email</a></p>
15+
</ul>
16+
17+
<form class="" action="mailto:[email protected]" method="post" enctype="text/plain">
18+
<label>Your Name:</label>
19+
<input type="text" name="yourName" value=""><br>
20+
<label>Your Email:</label>
21+
<input type="email" name="yourEmail" value=""><br><br
22+
<label>Your Message</label>
23+
<textarea name="name" rows="10" cols="30"></textarea><br>
24+
<input type="submit" name="">
25+
</form>
26+
</body>
27+
28+
</html>

hobbies.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!DOCTYPE html>
2+
<html lang="en" dir="ltr">
3+
<head>
4+
<meta charset="utf-8">
5+
<title>Hobbies</title>
6+
</head>
7+
<body>
8+
<h3>My Hobbies</h3>
9+
<ol>
10+
<li><a href="http://www.hesgoal.com/">Watching football</a></li>
11+
<li><a href="https://music.youtube.com/">Listening to music</a></li>
12+
<li><a href="https://www.callofduty.com/mobile">Playing games</a></li>
13+
</ol>
14+
</body>
15+
</html>

images/paytrybe logo.png

157 KB
Loading

index.html

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
<!DOCTYPE html>
2+
<html lang="en" dir="ltr">
3+
4+
<head>
5+
<meta charset="utf-8">
6+
<title>Tobi's Personal Site</title>
7+
</head>
8+
9+
<body>
10+
<table cellspacing="20">
11+
<td><img src="images/paytrybe logo.png" height="100" alt="PayTrybe Logo"></td>
12+
<td>
13+
<h1>Tobi Adeseko</h1>
14+
<p><em>Founder and CEO of <strong><a href="https://www.paytrybe.com/">PayTrybe.</a></strong></em></p>
15+
<p>I am a student of Kazan Federal University, Kazan, Russia. I love watching movies and football</p>
16+
</td>
17+
</table>
18+
<hr>
19+
<h3>Education</h3>
20+
<ul>
21+
<li>FEDACAD</li>
22+
<li>UI</li>
23+
<li>КФУ</li>
24+
</ul>
25+
<hr>
26+
<h3>Schools visited</h3>
27+
<table>
28+
<thead>
29+
<tr>
30+
<th>Dates</th>
31+
<th>Schools</th>
32+
</tr>
33+
</thead>
34+
<tbody>
35+
<tr>
36+
<td>2010</td>
37+
<td>FEDACAD</td>
38+
</tr>
39+
<tr>
40+
<td>UI</td>
41+
<td>2017</td>
42+
</tr>
43+
</tbody>
44+
</table>
45+
<hr>
46+
<h3>Skills</h3>
47+
<table cellspacing="10">
48+
<tr>
49+
<td>Web Development</td>
50+
<td>⭐️⭐️⭐️⭐️⭐️</td>
51+
</tr>
52+
<tr>
53+
<td>Photography</td>
54+
<td>⭐️⭐️⭐️⭐️⭐️</td>
55+
</tr>
56+
<tr>
57+
<td>Guitar Playing</td>
58+
<td>⭐️⭐️⭐️</td>
59+
</tr>
60+
<tr>
61+
<td>iOS Development</td>
62+
<td>⭐️😂</td>
63+
</tr>
64+
</td>
65+
</tr>
66+
</table>
67+
<a href="hobbies.html">My Hobbies</a>
68+
<a href="contacts.html">Contact Me</a>
69+
</body>
70+
71+
</html>

inputs.html

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<!DOCTYPE html>
2+
<html lang="en" dir="ltr">
3+
<head>
4+
<meta charset="utf-8">
5+
<title>Inputs</title>
6+
</head>
7+
<body>
8+
<form class="" action="index.html" method="post">
9+
<input type="button" name="" value="">
10+
<input type="checkbox" name="" value="">
11+
<input type="color" name="" value="">
12+
<input type="date" name="" value="">
13+
<input type="datetime-local" name="" value="">
14+
<input type="email" name="" value="">
15+
<input type="file" name="" value="">
16+
<input type="hidden" name="" value="">
17+
<input type="<img src="" alt="">" name="" value="">
18+
<input type="month" name="" value="">
19+
<input type="number" name="" value="">
20+
<input type="password" name="" value="">
21+
<input type="radio" name="" value="">
22+
<input type="range" name="" value="">
23+
<input type="reset" name="" value="">
24+
<input type="search" name="" value="">
25+
<input type="submit" name="" value="">
26+
<input type="tel" name="" value="">
27+
<input type="text" name="" value="">
28+
<input type="<time></time>" name="" value="">
29+
<input type="week" name="" value="">
30+
<input type="datetime" name="" value="">
31+
</form>
32+
</body>
33+
</html>

0 commit comments

Comments
 (0)