-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
93 lines (88 loc) · 3.58 KB
/
Copy pathindex.html
File metadata and controls
93 lines (88 loc) · 3.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="./assets/css/style.css" />
<title>Bota Seri / Portfolio</title>
</head>
<body>
<header>
<img src="./assets/images/Me.jpg" />
<h1>Hello!<br>I'm<br>Bota Seri</h1>
<nav>
<ul>
<li><a href="#about-me">About Me</a></li>
<li><a href="#my-work">My Work</a></li>
<li><a href="#contact-me">Contact Me</a></li>
</ul>
</nav>
</header>
<container>
<section class="intro" id="about-me">
<h2>About Me</h2>
<p>
I live in Florida and work in a barbershop where I get to cut hair and trim beards with a straight razor about four days out of a week. Even though I love my current job, I decided to start my journey of becoming my better self and began studying coding. After my first assignment I understood just how interesting I find it, and now I spend almost all of my free time learning new skills and applying fresh knowledge to solve challenges. Finally, I like to spend the rest of my free time creating knitted crafts for my Etsy store, watching Dexter, petting my cat, and of course, enjoying the year-round summer!
</p>
</section>
<section class="work" id="my-work">
<h2>My Work</h2>
<div>
<h3>Crypto Tracker</h3>
<a href="https://tari-star.github.io/Crypto-tracker/">
<img src="./assets/images/project-1.png"/>
</a>
</div>
<div class="row">
<div>
<h3>Run Buddy</h3>
<a href="https://tari-star.github.io/run-buddy/">
<img src="./assets/images/run-buddy.img.jpg" />
</a>
</div>
<div>
<h3>Taskinator</h3>
<a href=" https://tari-star.github.io/taskinator/">
<img src="./assets/images/task.png" />
</a>
</div>
</div>
<div class="row">
<div>
<h3>Taskmaster-Pro</h3>
<a href="https://tari-star.github.io/taskmaster-pro/">
<img src="./assets/images/t-pro.png" />
</a>
</div>
<div>
<h3>Work Day Scheduler</h3>
<a href="https://tari-star.github.io/scheduler-challenge-5/">
<img src="./assets/images/ws.png" />
</a>
</div>
</div>
<div class="row">
<div>
<h3>Password Generator</h3>
<a href="https://tari-star.github.io/challenge-3/">
<img src="./assets/images/passgen.png" />
</a>
</div>
<div>
<h3>Git It Done</h3>
<a href=" https://tari-star.github.io/git-it-done/">
<img src="./assets/images/gid.png" />
</a>
</div>
</div>
</section>
</container>
<footer id="contact-me">
<h2>Contact Me</h2>
<address>
<a href="mailto:bota.maral@gmail.com">GMAIL</a>
<a href="https://github.com/Tari-Star">GITHUB</a>
<a href="https://www.linkedin.com/in/bota-seri-195769a5">LINKEDIN</a>
</address>
</footer>
</body>
</html>