-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (64 loc) · 3.51 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
<!DOCTYPE html>
<html lang="en">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Dinama Profile Page</title>
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inria+Sans">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.3/css/all.css">
</html>
<body>
<div class="main">
<div class="nav">
<span class="title">
<a href=""><img src="assets/img/logo-title.png" alt="logo-title" height="48px">
<a href="">me</a>
</span>
<div class="nav-right">
<div class="nav-list">
<ul>
<li><a href="./projects/">projects</a></li>
<li><a href="./notes/">notes</a></li>
<li><a href="./logs/">logs</a></li>
</ul>
</div>
<span class="toggler-place">
<a href=""><svg class="theme-toggler" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M0 12c0 6.627 5.373 12 12 12s12-5.373 12-12-5.373-12-12-12-12 5.373-12 12zm2 0c0-5.514 4.486-10 10-10v20c-5.514 0-10-4.486-10-10z"></path></svg></a>
</span>
<div class="hamburger-menu">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</div>
</div>
</div>
<div class="content">
<div class="photo-section">
<div class="photo-container">
<img src="assets/img/home-pics.png" alt="profile-photo" width="300px">
</div>
</div>
<div class="about-section">
<div class="about-container">
<div class="text-container">
<h1>Hello, I'm Dima Dinama</h1>
<p>I'm just a regular person who likes Formula 1, Tech Stuff, and some Python Programming. <br>
I love trying new things. Currently I'm not working at tech company and not using my programming skills on my job. <br>
But I'm looking for opportunity to work on tech stuff, especially doing jobs with python programming language like web development, computer vision, or machine learning.
</p>
</div>
<div class="handles-container">
<p>Learn more about me on : </p>
<a href="https://github.com/dmaharika/" target="_blank"><i class="fab fa-github icon"></i></a>
<a href="https://linkedin.com/in/dmaharika/" target="_blank"><i class="fab fa-linkedin icon"></i></a>
<a href="https://facebook.com/dmaharika/" target="_blank"><i class="fab fa-facebook icon"></i></a>
<a href="https://instagram.com/dmaharika/" target="_blank"><i class="fab fa-instagram icon"></i></a>
<a href="https://twitter.com/dmaharika/" target="_blank"><i class="fab fa-twitter icon"></i></a>
</div>
</div>
</div>
</div>
<footer><p>© 2023 - Dima Dinama. See the source on <a href="https://github.com/dmaharika/dmaharika.github.io" target="_blank">Github</a></p></footer>
</div>
<script src="assets/js/script.js"></script>
</body>