-
Notifications
You must be signed in to change notification settings - Fork 1
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
Showing
1 changed file
with
55 additions
and
0 deletions.
There are no files selected for viewing
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,55 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Projects - Ken099-lunde's Repository</title> | ||
<link rel="stylesheet" href="main.css"> | ||
</head> | ||
<body> | ||
<header> | ||
<nav> | ||
<ul> | ||
<li><a href="index.html">Home</a></li> | ||
<li><a href="projects.html">Projects</a></li> | ||
<li><a href="skills.html">Skills</a></li> | ||
<li><a href="experience.html">Experience</a></li> | ||
<li><a href="certifications.html">Certifications</a></li> | ||
<li><a href="contact.html">Contact</a></li> | ||
</ul> | ||
</nav> | ||
</header> | ||
|
||
<section id="projects" class="container"> | ||
<h2>Projects</h2> | ||
<div class="grid"> | ||
<div class="card"> | ||
<h3>Oracle Database SQL Projects</h3> | ||
<p>Exercises, examples, and projects related to Oracle Database SQL.</p> | ||
</div> | ||
<div class="card"> | ||
<h3>ISC2 Study Materials</h3> | ||
<p>Notes, summaries, and resources for ISC2 certifications.</p> | ||
</div> | ||
<div class="card"> | ||
<h3>Collaborations</h3> | ||
<p>Open to collaborate! A platform for shared growth and knowledge exchange.</p> | ||
</div> | ||
</div> | ||
</section> | ||
|
||
<footer> | ||
<p>© 2024 Ken099-lunde | <a href="mailto:[email protected]">Contact Me</a></p> | ||
<nav> | ||
<ul> | ||
<li><a href="#terms">Terms</a></li> | ||
<li><a href="#privacy">Privacy</a></li> | ||
<li><a href="#security">Security</a></li> | ||
<li><a href="#status">Status</a></li> | ||
<li><a href="#docs">Docs</a></li> | ||
<li><a href="#cookies">Manage Cookies</a></li> | ||
</ul> | ||
</nav> | ||
</footer> | ||
</body> | ||
</html> |