-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (49 loc) · 2.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My portfolio</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" href="index.css">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="#">My portfolio</a>
<div class="collapse navbar-collapse">
<ul class="navbar-nav mr-auto">
<li class="nav-item"><a class="nav-link" href="#about">About me</a></li>
<li class="nav-item"><a class="nav-link" href="#projects">Projects</a></li>
<li class="nav-item"><a class="nav-link" href="#contact">Contact</a></li>
</ul>
</div>
</nav>
<div class="container mt-5" id="about">
<div class="row">
<div class="col-md-4">
<img src="askhat.jpg" class="img-fluid rounded" alt="Askhat Kabi">
</div>
<div class="col-md-8">
<h2>Hi</h2>
<p>I am Askhat, a student at AITU University. I am a second-year student and I am learning different programming languages such as haskell, java, python, c++ and others. I love dogs very much, I would like to have a small dog in the future. I also want to become a middle developer in two years.</p>
</div>
</div>
</div>
<div class="container mt-5" id="projects">
<h2>My works</h2>
<div class="row">
<div class="col-md-4">
<img src="project1.png" class="img-fluid rounded" alt="Project 1">
<h5>Mobile app design</h5>
<p>I did this project in my first year, when I first learned about Figma. I did the design for our 2GIS analogue app, which we ultimately did not create and complete.</p>
</div>
</div>
</div>
<footer class="bg-light text-center py-3 mt-5" id="contact">
<p>Contact me at <a href="mailto:[email protected]">[email protected]</a></p>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>