generated from derickmoncado/launchpad
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0d8d2cc
commit 209af6f
Showing
8 changed files
with
356 additions
and
6 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
<!DOCTYPE html> | ||
<html lang="en" id="test"> | ||
|
||
<head> | ||
<title>Derick Moncado | Front End Dev</title> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | ||
<meta name="author" content="Derick Moncado"> | ||
<meta name="description" content="Derick Moncado | Front End Developer and Designer from Southern California"> | ||
<meta name="keywords" content="Derick Moncado, Front End Developer, Developer, Designer, Los Angeles"> | ||
<link rel="icon" type="image/x-icon" href="favicon.ico"> | ||
|
||
<!-- CSS --> | ||
<link rel="stylesheet" href="assets/css/main.min.css"> | ||
</head> | ||
|
||
<body> | ||
<main role="main"> | ||
<!-- Header --> | ||
<header id="dm-header"> | ||
<nav class="navbar navbar-expand-lg navbar-light py-4"> | ||
<div class="container"> | ||
<a class="navbar-brand" href="#dm-hero"> | ||
<img src="assets/images/dm-logo.png" alt="Derick Moncado"> | ||
</a> | ||
<!-- TODO: TURN TOGGLE BUTTON TO AN "X" WHEN CLICKED --> | ||
<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 flex-grow-0" id="navbarNavDropdown"> | ||
<ul class="navbar-nav"> | ||
<li class="nav-item px-2"> | ||
<a class="nav-link" href="#dm-about-me">About</a> | ||
</li> | ||
<li class="nav-item px-2"> | ||
<a class="nav-link" href="#dm-skills-and-hobbies">Skills</a> | ||
</li> | ||
<li class="nav-item px-2"> | ||
<a class="nav-link" href="#dm-services">Services</a> | ||
</li> | ||
<li class="nav-item px-2"> | ||
<a class="nav-link" href="#dm-qualifications">Qualifications</a> | ||
</li> | ||
<li class="nav-item px-2"> | ||
<a class="nav-link" href="#dm-testimonials">Testimonials</a> | ||
</li> | ||
<li class="nav-item px-2"> | ||
<a class="nav-link" href="#dm-contact-me">Contact</a> | ||
</li> | ||
|
||
<li class="nav-item px-2" id="to-snippets"> | ||
<a class="nav-link" href="/snippets.html" target="_blank">Snippets <i | ||
class="bi bi-box-arrow-up-right"></i></a> | ||
</li> | ||
<li class="nav-item px-2" id="back-to-dm"> | ||
<a class="nav-link" href="/index.html"><i class="bi bi-arrow-left-circle-fill"></i> Back | ||
to DM</a> | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</nav> | ||
</header> | ||
<!-- Body --> | ||
<!--- Snippets section ---> | ||
<section id="dm-snippets"> | ||
<div class="container-sm"> | ||
<div class="dm-snippets-content"> | ||
<div class="dm-snippets-content__heading"> | ||
<h2>Snippets</h2> | ||
<p>A collection of useful JavaScript snippets</p> | ||
</div> | ||
|
||
<div class="dm-snippets-content__search"> | ||
<form> | ||
<label for="searchInput" class="visually-hidden">Search Snippets...</label> | ||
<input type="search" class="form-control" id="searchInput" placeholder="Search snippets..."> | ||
</form> | ||
</div> | ||
|
||
<div class="dm-snippets-content__body"> | ||
<h3>Array Methods</h3> | ||
<hr> | ||
<div class="snippets"> | ||
<ul class="snippet-list"> | ||
<!-- Fetched and populated with JS --> | ||
</ul> | ||
</div> | ||
|
||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
|
||
<!-- Footer --> | ||
<footer> | ||
<div class="container text-center"> | ||
<img src="assets/images/dm-logo.png" alt="Derick Moncado"> | ||
<p class="small">© Copyright Derick Moncado 2024</p> | ||
<p class="small"><i class="bi bi-code-slash"></i></p> | ||
</div> | ||
</footer> </main> | ||
|
||
<!-- JS --> | ||
<script src="assets/js/main.min.js"></script> | ||
</body> | ||
|
||
</html> |