-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
107 lines (105 loc) · 3.6 KB
/
index.html
File metadata and controls
107 lines (105 loc) · 3.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Jibril Richter</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous"
/>
<link
href="https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css"
rel="stylesheet"
/>
<link rel="stylesheet" href="./style1.css" />
</head>
<body>
<section class="nav-bar">
<nav class="navbar navbar-expand-sm bg-body-light">
<div class="container">
<a class="navbar-brand" href="#">JR</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNavAltMarkup"
aria-controls="navbarNavAltMarkup"
aria-expanded="false"
aria-label="Toggle navigation"
>
<i class="bx bx-menu"></i>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav ms-auto">
<a class="nav-link" aria-current="page" href="./index.html"
>Home</a
>
<a class="nav-link" href="./about.html">About Me</a>
<a class="nav-link" href="#">Portfolio</a>
<a class="nav-link" href="#">Contact</a>
</div>
</div>
</div>
</nav>
</section>
<section class="home-page">
<div class="container">
<div class="row flex-sm-row-reverse align-items-center">
<div class="col-sm-5 home-img px-5 mb-3">
<img
src="./images/newProfilePic_c.jpg"
width="350px"
alt="jibril-img"
class="img-fluid rounded"
/>
</div>
<div class="col-sm-7 home-text px-5">
<h3>Hello, my name is</h3>
<h1>Jibril Richter</h1>
<h3>and I'm a <span>Software Developer</span></h3>
<p>
I have experience with HTML, CSS, JavaScript and React.js. Also, I
am proficient designing and building Restful API architecture
using Java and Spring Framework.
</p>
<div class="link-container">
<a
href="https://www.linkedin.com/in/jibril-richter-3a6675117/"
target="_blank"
class="links"
><i class="bx bxl-linkedin"></i
></a>
<a
href="https://www.instagram.com/jibrilrichter_/"
target="_blank"
class="links"
><i class="bx bxl-instagram"></i
></a>
<a
href="https://twitter.com/jibril_richter"
target="_blank"
class="links"
><i class="bx bxl-twitter"></i
></a>
<a
href="https://github.com/jib-data"
target="_blank"
class="links"
><i class="bx bxl-github"></i
></a>
</div>
<a href="" class="cv">Download CV</a>
</div>
</div>
</div>
</section>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"
></script>
</body>
</html>