Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(Ignore) Milestone 1 #4

Closed
wants to merge 10 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/node_modules
32 changes: 32 additions & 0 deletions blog.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!DOCTYPE html>
<html>
<head>
<title>My Blog</title>
<link rel="stylesheet" href="css/styles.css" />
<link rel="icon" href="images/milky-way.jpg" type="image/x-icon" />
</head>
<body>
<nav class="navbar">
<ul class="nav-list">
<li><a href="blog.html">Blog</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li>
<a href="index.html">
<img class="home-image" src="images/me.jpg" alt="home-page image" />
</a>
</li>
<li><a href="resume.html">Resume</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<main>
<h1 class="page-title">Blog</h1>
<div id="blog-container">
</div>
</main>
<footer class="footer">
© 2024 Nick Carboni's Website | All Rights Reserved
</footer>
</body>
<script src="./src/blog.js"></script>
</html>
47 changes: 47 additions & 0 deletions contact.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<!DOCTYPE html>
<html>
<head>
<title>Contact Me</title>
<link rel="stylesheet" href="css/styles.css" />
<link rel="icon" href="images/milky-way.jpg" type="image/x-icon" />
</head>
<body>
<nav class="navbar">
<ul class="nav-list">
<li><a href="blog.html">Blog</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li>
<a href="index.html">
<img
class="home-image"
src="images/me.jpg"
alt="home-page image"
/>
</a>
</li>
<li><a href="resume.html">Resume</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<main><h1 class="page-title">Contact</h1>
<form>
<label for="name">Name</label>
<br>
<input type="text" id="name" name="name" placeholder="Name" required>
<br>
<label for="email">Email</label>
<br>
<input type="text" id="email" name="email" placeholder="Email" required>
<br>
<label for="message">Message</label>
<br>
<textarea id="message" name="Message" placeholder="Message" required></textarea>
<br>
<input class="submit-button" type="submit" value="Submit">
</form>
</main>
<footer class="footer">
© 2024 Nick Carboni's Website | All Rights Reserved
</footer>
</body>
</html>
Loading