-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwork.html
More file actions
94 lines (91 loc) · 5.42 KB
/
work.html
File metadata and controls
94 lines (91 loc) · 5.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio UI</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<script src="https://kit.fontawesome.com/a5f57c9894.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="/css/style.css">
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg navbar-light ">
<div class="container">
<a class="navbar-brand" href="#">Portfolio UI</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavDropdown" aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavDropdown">
<ul class="navbar-nav ms-auto mb-2 mb-lg-0"">
<li class="nav-item">
<a class="nav-link fs-6" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link fs-6 active text-danger" href="work.html">Work</a>
</li>
<li class="nav-item">
<a class="nav-link fs-6" href="blog.html">Blog</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<section class="container mt-5">
<h4 class="ms-5 fs-1 mb-5 text-danger"> Works</h4>
<div class="row ms-4 me-5 ">
<div class="col-lg-4 mt-3">
<img class="mb-3" src="img/Rectangle 30.png" alt="">
</div>
<div class="col-lg-8 mt-2 mb-4">
<h1 class="fs-3 mb-4 text-primary">Designing Dashboards</h1>
<span class="border bg-dark text-white rounded-pill p-2">2020</span>
<span class="text-muted ps-4">Illustration</span>
<p class="mt-4">Amet minim mollit non deserunt ullamco est sit aliqua dolor do amet sint. Velit officia consequat duis enim velit mollit. Exercitation veniam consequat sunt nostrud amet.</p>
</div> <hr class="mt-3">
<div class="col-lg-4 ">
<img class="mb-3" src="img/Rectangle 32.png" alt="">
</div>
<div class="col-lg-8 mb-4">
<h1 class="fs-3 mb-4 text-primary">Vibrant Portraits of 2020</h1>
<span class="border bg-dark text-white rounded-pill p-2">2018</span>
<span class="text-muted ps-4">Illustration</span>
<p class="mt-4">Amet minim mollit non deserunt ullamco est sit aliqua dolor do amet sint. Velit officia consequat duis enim velit mollit. Exercitation veniam consequat sunt nostrud amet.</p>
</div>
<hr class="mt-3">
<div class="col-lg-4">
<img class="mb-3" src="img/Rectangle 34.png" alt="">
</div>
<div class="col-lg-8 mb-4">
<h1 class="fs-3 mb-4 text-primary">36 Days of Malayalam type</h1>
<span class="border bg-dark text-white rounded-pill p-2">2018</span>
<span class="text-muted ps-4">Typography</span>
<p class="mt-4">Amet minim mollit non deserunt ullamco est sit aliqua dolor do amet sint. Velit officia consequat duis enim velit mollit. Exercitation veniam consequat sunt nostrud amet.</p>
</div> <hr class="mt-3">
<div class="col-lg-4">
<img class="mb-3" src="img/Rectangle 40.png" alt="">
</div>
<div class="col-lg-8 mb-4">
<h1 class="fs-3 mb-4 text-primary">Components</h1>
<span class="border bg-dark text-white rounded-pill p-2">2018</span>
<span class="text-muted ps-4">Typography</span>
<p class="mt-4">Amet minim mollit non deserunt ullamco est sit aliqua dolor do amet sint. Velit officia consequat duis enim velit mollit. Exercitation veniam consequat sunt nostrud amet.</p>
</div> <hr class="mt-3">
</div>
</section>
<footer class="container mt-5">
<div class="row">
<div class="col-lg-12 text-center mb-4 ">
<span><a class="me-4 text-decoration-none text-dark" href="#"><i class="fs-3 fab fa-facebook"></i></a></span>
<span><a class="me-4 text-decoration-none text-dark" href="#"><i class="fs-3 fab fa-youtube"></i></a></span>
<span><a class="me-4 text-decoration-none text-dark" href="#"><i class="fs-3 fab fa-instagram-square"></i></a></span>
<span><a class="me-4 text-decoration-none text-dark" href="#"><i class="fs-3 fab fa-twitter-square"></i></a></span>
</div>
<p class="text-center"><a class="text-decoration-none" href="https://github.com/jahedripon9">Jahed Ahmed Ripon</a> ©2021 All rights reserved </p>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
</body>
</html>