-
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
d3df799
commit 68b5e48
Showing
1 changed file
with
53 additions
and
52 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 |
---|---|---|
@@ -1,55 +1,56 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Articles</title> | ||
<link rel="stylesheet" href="../../style.css" /> | ||
</head> | ||
<body> | ||
<main class="fiction-article-container"> | ||
<div class="header-container"> | ||
<header> | ||
<nav> | ||
<ul class="navigation"> | ||
<li class="nav-to-home"> | ||
<a href="../../index.html">Frustrated Cat</a> | ||
</li> | ||
<li class="li-gap"> | ||
<a href="../fiction/fiction.html">Fiction</a> | ||
</li> | ||
<li class="li-gap"> | ||
<a href="../articles/articles.html">Articles</a> | ||
</li> | ||
<li class="li-gap"> | ||
<a href="../photography/photography.html">Photography</a> | ||
</li> | ||
<li class="li-gap"> | ||
<a href="../reading-list/reading-list.html">Reading List</a> | ||
</li> | ||
<li class="li-gap"> | ||
<a href="../library/library.html">Library</a> | ||
</li> | ||
</ul> | ||
</nav> | ||
</header> | ||
</div> | ||
<h1>Articles</h1> | ||
<p class="fiction-article-description"> | ||
Included here is a collection of my nonficiton writings that I have | ||
chosen to post. Most of what you will find here are my | ||
pseudo-journalistic ramblings, book reviews, and random thoughts on | ||
various topics of interest. | ||
</p> | ||
<article class="stories-container"></article> | ||
<a href="#" class="cover-image-container" | ||
><img | ||
class="story-cover-image" | ||
src="../../assets/coming-soon.jpg" | ||
alt="Article Cover" | ||
height="500px" | ||
/>Coming Soon</a | ||
> | ||
</main> | ||
</body> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Articles</title> | ||
<link rel="stylesheet" href="../../style.css" /> | ||
</head> | ||
<body> | ||
<main class="fiction-article-container"> | ||
<div class="header-container"> | ||
<header> | ||
<nav> | ||
<ul class="navigation"> | ||
<li class="nav-to-home"> | ||
<a href="../../index.html">Frustrated Cat</a> | ||
</li> | ||
<li class="li-gap"> | ||
<a href="../fiction/fiction.html">Fiction</a> | ||
</li> | ||
<li class="li-gap"> | ||
<a href="../articles/articles.html">Articles</a> | ||
</li> | ||
<li class="li-gap"> | ||
<a href="../photography/photography.html">Photography</a> | ||
</li> | ||
<li class="li-gap"> | ||
<a href="../reading-list/reading-list.html">Reading List</a> | ||
</li> | ||
<li class="li-gap"> | ||
<a href="../library/library.html">Library</a> | ||
</li> | ||
</ul> | ||
</nav> | ||
</header> | ||
</div> | ||
<h1>Articles</h1> | ||
<p class="fiction-article-description"> | ||
Included here is a collection of my nonficiton writings that I have | ||
chosen to post. Most of what you will find here are my | ||
pseudo-journalistic ramblings, book reviews, and random thoughts on | ||
various topics of interest. | ||
</p> | ||
<article class="stories-container"> | ||
<a href="#" class="cover-image-container" | ||
><img | ||
class="story-cover-image" | ||
src="../../assets/coming-soon.jpg" | ||
alt="Article Cover" | ||
height="500px" | ||
/>Coming Soon</a | ||
> | ||
</article> | ||
</main> | ||
</body> | ||
</html> |