-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.html
94 lines (89 loc) · 5.42 KB
/
project.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="Professioanl website - Colton Leblond" />
<meta name="author" content="Colton Leblond"/>
<title>Colton LeBlond - Projects</title>
<!-- Favicon-->
<link rel="icon" type="image/x-icon" href="assets/favicon.ico" />
<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=Plus+Jakarta+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet" />
<!-- Core theme CSS (includes Bootstrap)-->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<link href="css/styles.css" rel="stylesheet" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body class="d-flex flex-column h-100">
<main class="flex-shrink-0">
<!-- Navigation-->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark py-3">
<div class="container px-5">
<a class="navbar-brand" href="index.html"><span class="fw-bolder text-gradient d-inline">Home</span></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"><span class="navbar-toggler-icon"></span></button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ms-auto mb-2 mb-lg-0 small fw-bolder">
<li class="nav-item"><a class="nav-link fs-5 fw-light text-muted" href="project.html">Projects</a></li>
</ul>
</div>
</div>
</nav>
<!--Project Section-->
<section class="py-5">
<div class="container px-5 mb-5">
<div class="text-center mb-5">
<h1 class="display-5 fw-bolder mb-0"><span class="text-gradient d-inline">Projects</span></h1>
</div>
<div class="row gx-5 justify-content-center">
<div class="col-lg-11 col-xl-9 col-xxl-8">
<!--Project 1 Card-->
<div class="card overflow-hidden shadow rounded-1 border-0 mb-5">
<div class="card-body p-0">
<div class="d-flex align items-center">
<div class="p-5">
<!--Card Details-->
<h2 class="fw-border">Project 1</h2>
<p>TEMP PROJECT DESCRIPTIONTEMP PROJECT DESCRIPTIONTEMP PROJECT DESCRIPTIONTEMP PROJECT DESCRIPTIONTEMP PROJECT DESCRIPTIONTEMP PROJECT DESCRIPTION TEMP PROJECT DESCRIPTION</p>
</div>
<img class="img-fluid" src="https://dummyimage.com/300x400/3d3d3d/fff" alt="..." />
</div>
</div>
</div>
<!--Project 2 Card-->
<div class="card overflow-hidden shadow rounded-1 border-0 mb-5">
<div class="card-body p-0">
<div class="d-flex align items-center">
<div class="p-5">
<!--Card Details-->
<h2 class="fw-border">Project 2</h2>
<p>TEMP PROJECT DESCRIPTIONTEMP PROJECT DESCRIPTIONTEMP PROJECT DESCRIPTIONTEMP PROJECT DESCRIPTIONTEMP PROJECT DESCRIPTIONTEMP PROJECT DESCRIPTION TEMP PROJECT DESCRIPTION</p>
</div>
<img class="img-fluid" src="https://dummyimage.com/300x400/3d3d3d/fff" alt="..." />
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</main>
<!--Footer-->
<footer class="bg-dark py-4 mt-auto">
<div class="container px-5">
<div clas="row align-items-center justify-content-between flex-column flex-sm-row">
<div class="col-auto">
<div class="small m-0 fs-6 fw-light text-muted">© 2023 Colton LeBlond.</div>
</div>
<div class="col-auto">
<button class="button" type="button" onclick="topFunction()" id="myBtn" title="Go To Top">To the Top</a>
</div>
</div>
</div>
</footer>
<!-- Bootstrap core JS-->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
<script src="js/scripts.js"></script>
</body>
</html>