Skip to content

Commit 0e51ead

Browse files
committed
[proj. Starbuzz] Add "html" folder
Added an "html" folder with the blog.html file moved into it. LP from Books
1 parent 08407d2 commit 0e51ead

4 files changed

Lines changed: 13 additions & 6 deletions

File tree

.vscode/settings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
"Webville",
1313
"beanheading",
1414
"compl",
15+
"img's",
1516
"rosehips",
1617
"splenda"
1718
]

Learning_HTML_CSS_Freeman_E/Starbuzz/css/starbuzz.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,10 @@ div#tableContainer {
4949
min-height: 700px;
5050
}
5151

52+
div#tableContainer.blogContainer {
53+
min-height: 735px;
54+
}
55+
5256
div#tableRow {
5357
display: table-row;
5458
}

Learning_HTML_CSS_Freeman_E/Starbuzz/blog.html renamed to Learning_HTML_CSS_Freeman_E/Starbuzz/html/blog.html

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,18 @@
55
<meta charset="utf-8">
66
<meta name="viewport" content="width=device-width, initial-scale=1.0">
77
<title>Starbuzz Coffee - Blog</title>
8-
<link rel="stylesheet" href="css/starbuzz.css">
8+
<link rel="stylesheet" href="../css/starbuzz.css">
99
</head>
1010

1111
<body>
1212
<header class="top">
13-
<img id="headerLogo" src="images/headerLogo.gif" alt="Starbuzz Coffee header logo image">
14-
<img id="headerSlogan" src="images/headerSlogan.gif" alt="Providing all the caffeine you need to power your life.">
13+
<a class="main-link" href="../index.html"><img id="headerLogo" src="../images/headerLogo.gif"
14+
alt="Starbuzz Coffee header logo image"></a>
15+
<img id="headerSlogan" src="../images/headerSlogan.gif"
16+
alt="Providing all the caffeine you need to power your life.">
1517
</header>
1618

17-
<div id="tableContainer">
19+
<div id="tableContainer" class="blogContainer">
1820
<div id="tableRow">
1921
<!-- 1. -->
2022
<section id="drinks">
@@ -80,7 +82,7 @@ <h1>Most unique patron of the month </h1>
8082

8183
<aside>
8284
<p class="beanheading">
83-
<img src="images/bag.gif" alt="Bean Machine bag">
85+
<img src="../images/bag.gif" alt="Bean Machine bag">
8486
<br>
8587
ORDER ONLINE
8688
with the

Learning_HTML_CSS_Freeman_E/Starbuzz/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<nav>
1818
<ul>
1919
<li class="selected"><a href="index.html">HOME</a></li>
20-
<li><a href="blog.html">BLOG</a></li>
20+
<li><a href="html/blog.html">BLOG</a></li>
2121
<li><a href="#">INVENTIONS</a></li>
2222
<li><a href="#">RECIPES</a></li>
2323
<li><a href="#">LOCATIONS</a></li>

0 commit comments

Comments
 (0)