-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwork.html
80 lines (70 loc) · 3.33 KB
/
work.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Rayoo</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta name="description" content="" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" crossorigin="anonymous">
<link rel="icon" href="img/favicon.png">
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/nav.css">
<link rel="stylesheet" href="./css/about.css">
<link rel="stylesheet" href="./css/work.css">
</head>
<body>
<section class="top-bar">
<nav class="navbar navbar-expand-md navbar-dark sticky-top">
<a href="./index.html" class="navbar-brand"><h2><span class="link">Ray<span class="yellow">oo</span></h2></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#toggleMobileMenu" aria-controls="toggleMobileMenu" aria-expanded="false" aria-label="Toggle navigation"><span class="navbar-toggler-icon"></span></button>
<div class="collapse navbar-collapse" id="toggleMobileMenu">
<ul class="navbar-nav ms-auto text-center">
<li><a href="./index.html" class="nav-link">home</a></li>
<li><a href="./about.html" class="nav-link">about</a></li>
<li><a href="#" class="nav-link active">work</a></li>
</ul>
</div>
</nav>
</section>
<section>
<nav>
<ul>
<li class="item"><a href="#">PORTFOLIO</a></li>
<li class="item"><a href="#">FRONTEND MENTOR CHALLENGES</a></li>
</ul>
</nav>
</section>
<section>
<div class="showcase">
<div class="card">
<div class="img-area">
<img class="mobile-img" src="./img/carrent.png" alt="">
<img class="desk-img" src="./img/carrentdesk.png" alt="">
</div>
<div class="description">
<h3>CARRENT</h3>
<p>A website where your can rent electric cars</p>
</div>
</div>
<div class="card">
<div class="img-area">
<img class="mobile-img" src="./img/carrent.png" alt="">
<img class="desk-img" src="./img/carrentdesk.png" alt="">
</div>
<div class="description">
<h3>CARRENT</h3>
<p>A website where your can rent electric cars</p>
</div>
</div>
</div>
</section>
<div class="bottom-container">
<a class="footer-link" href="https://www.linkedin.com/in/ryan-ochieng-03a0b9236">LinkedIn</a>
<a class="footer-link" href="https://www.twitter.com/_ray00_?t=PqUIwiX5WwQW4YmKTrmQYg&s=01">Twitter</a>
<a class="footer-link" href="https://www.instagram.com/swipe_code/">Instagram</a>
<a class="footer-link" href="https://www.behance.net/omororyan7967">Behance</a>
<p class="copyright">© Ryan Ochieng.</p>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" crossorigin="anonymous"></script>
</body>
</html>