-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
96 lines (93 loc) · 3.2 KB
/
about.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
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>About Chris</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:ital@1&family=Roboto&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css" integrity="sha512-MV7K8+y+gLIBoVD59lQIYicR65iaqukzvf/nwasF0nqhPay5w/9lJmVM2hMDcnK1OnMGCdVK+iQrJ7lzPJQd1w==" crossorigin="anonymous"
referrerpolicy="no-referrer" />
</head>
<body>
<div class="container">
<nav>
<img class="logo" src="images/logo.png" alt="logo">
<i class="fa-solid fa-bars menu-bar"></i>
<div class="nav-bar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="blogs.html">Blog</a></li>
<li><a href="about.html">About me</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="contact.html">contact</a></li>
<li class="logg"><a class="login" href="login.html">Login</a></li>
<!-- <li class="logout" style="display: none"><a href="index.html" id="logout">Logout</a> -->
</ul>
</div>
</nav>
</div>
<div class="about-photo">
<img class="chris2" src="images/chris2.jpg" alt="Abiyingoma Christian">
<h1 class="about-name">Christian ABIYINGOMA</h1>
</div>
<div class="about-content">
<hr>
<div class="personal-info">
<div class="">
<h2>Personal statement</h2>
<p>Christian is a dedicated fullstack
software <br>developer who has a unique
talent at seeing <br>the big picture potential
in a product or brand <br>and then bringing
it to life.
</p>
<p>Being comfortable working on a range
of projects <br>from designing native apps
to collaborating <br>on set with a production
crew.
</p>
</div>
<div class="">
<h2>Programming skills</h2>
<ul>
<li>C,C++</li>
<li>Python</li>
<li>Java</li>
<li>Javascript</li>
<li>PL/SQL</li>
<li>Html</li>
<li>CSS</li>
</ul>
</div>
<div class="">
<h2>Frameworks</h2>
<ul>
<li>Expressjs</li>
<li>Bootstrap</li>
<li>Jquery</li>
</ul>
</div>
</div>
<hr>
<div class="about-bottom">
<h2>Download the CV <span><a href="#">here</a></span></h2>
<ul>
<li><i class="fa-brands fa-facebook"></i></li>
<li><i class="fa-brands fa-instagram"></i></li>
<li><i class="fa-brands fa-twitter"></i></li>
<li><i class="fa-brands fa-linkedin"></i></li>
</ul>
</div>
</div>
<script>
menu = document.querySelector(".menu-bar");
menu.onclick = function(){
navbar=document.querySelector(".nav-bar");
navbar.classList.toggle("active");
}
</script>
<script src="./src/auth.js"></script>
</body>
</html>