-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwork.html
More file actions
87 lines (80 loc) · 3.66 KB
/
work.html
File metadata and controls
87 lines (80 loc) · 3.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Work Project Page</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"
></script>
<script src="https://kit.fontawesome.com/c44f491b5b.js" crossorigin="anonymous"></script>
<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=Playfair+Display:wght@700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<nav class="navbar navbar-expand-lg bg-body-tertiary " >
<div class="container-fluid" style="background-color: #92bddb;">
<a class="navbar-brand" href="#">Dedra D.</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">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav ">
<a class="nav-link active" aria-current="page" href="../index.html">Home</a>
<a class="nav-link" href="../work.html">Work</a>
<a class="nav-link" href="../about.html">About Me</a>
<a class="nav-link" href="../contact.html"> Contact</a>
</div>
</div>
</div>
</nav>
<div class=" content-container container">
<div class="content">
<h1 class=" text-center mb-4">Take a look at what I've been working on!</h1>
<div class="row">
<div class="col-md-6 mb-4 p-3">
<img src="Food dish.png" class="img-fluid mb-3 rounde" alt=""/>
<h3 class="text-center m-0"> Food Dish Project</h3>
<p class="text-center text-muted">Built with HTML & CSS</p>
</div>
<div class="row">
<div class="col-md-6 mb-4 p-3">
<img src="digital clock.png" class="img-fluid mb-3 rounded" alt=""/>
<h3 class="text-center m-0"> Digital Clock Project</h3>
<p class="text-center text-muted">Built with HTML & CSS with JS</p>
</div>
<div class="col-md-6 mb-4 p-3">
<img src="weather app.png" class="img-fluid mb-3 rounde" alt=""/>
<h3 class="text-center m-0"> Weather Project</h3>
<p class="text-center text-muted">Built with HTML ,CSS & JS (API)</p>
</div>
<div class="col-md-6 mb-4 p-3">
<img src="Todo-list.png" class="img-fluid mb-3 rounde" alt=""/>
<h3 class="text-center m-0"> To Do List Project</h3>
<p class="text-center text-muted">Built with HTML ,CSS & JS</p>
</div>
</div>
</div>
</div>
<footer>
<div class="social-links text-center mb-5">
<a href="https://www.linkedin.com/in/dedra-dearborne-7532b7223/" target="_blank"<i class="fa-brands fa-linkedin "></i> </a>
<a href="http://www.github.com/dsleazii" target="_blank" <i class="fa-brands fa-github "></i> </i> </a>
</div>
</footer>
</div>
</body>
</html>