Skip to content

Commit

Permalink
blog page added
Browse files Browse the repository at this point in the history
  • Loading branch information
dxtaner committed Nov 14, 2023
1 parent 8780b64 commit 5dbbbd3
Showing 1 changed file with 104 additions and 0 deletions.
104 changes: 104 additions & 0 deletions myblog.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8" />
<title>Taner's Portfolio</title>
<link rel="stylesheet" href="css/style.css" />
<link rel="icon" href="favicon.ico" />

<!-- Font Imports -->
<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=Merriweather&display=swap"
rel="stylesheet" />
<link
href="https://fonts.googleapis.com/css2?family=Merriweather&family=Montserrat&display=swap"
rel="stylesheet" />
<link
href="https://fonts.googleapis.com/css2?family=Merriweather&family=Montserrat&family=Sacramento&display=swap"
rel="stylesheet" />

<!-- Font Awesome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
integrity="sha512-..."
crossorigin="anonymous" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.15.3/css/all.css"
integrity="sha384-DzVUJcTF/jRWRwIe2IHD1kxpqez3uqRxrXoXNpL0+piA7twzN+RZBJY1TfrDok8o"
crossorigin="anonymous" />

<!-- Custom CSS -->
<link rel="stylesheet" href="css/modestyle.css" />
<link rel="stylesheet" href="css/skillstyle.css" />
<link rel="stylesheet" href="css/blog.css" />

<!-- 3D Model and Prismatic Script -->
<script
type="module"
src="https://unpkg.com/@google/[email protected]/dist/model-viewer.js"></script>

<!-- Dynamic Navbar and Footer -->
<script>
fetch("navbar.html")
.then((response) => response.text())
.then((data) => {
const navContainer = document.getElementById("navigation-container");
navContainer.innerHTML = data;
});
</script>

<script>
fetch("footer.html")
.then((response) => response.text())
.then((data) => {
const footerContainer = document.getElementById("footer-container");
footerContainer.innerHTML = data;
});
</script>

<script>
fetch("contact.html")
.then((response) => response.text())
.then((data) => {
const navContainer = document.getElementById("contact-container");
navContainer.innerHTML = data;
});
</script>
</head>
<body id="background_Body">
<div id="navigation-container"></div>

<div class="top-container">
<div class="middle-container">
<div class="blogs" id="blogs">
<h2 class="myHeader">My Blog Posts</h2>
<div id="blog-container"></div>
<div id="page-container" class="pagination"></div>
</div>
<br />
</div>
<hr />
<br />
<div class="contact-me">
<div id="contact-container"></div>
</div>
</div>

<div class="bottom-container" id="links">
<div id="footer-container"></div>
</div>

<script
type="module"
src="https://unpkg.com/@google/[email protected]/dist/model-viewer.js"></script>
<script
nomodule
src="https://unpkg.com/@google/[email protected]/dist/model-viewer-legacy.js"></script>

<script src="blog.js"></script>
</body>
</html>

0 comments on commit 5dbbbd3

Please sign in to comment.