Skip to content

link tag add #46

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions Introduction to CSS/Lesson 1/about.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<title>The Generics | About</title>
<title>The Generic | About</title>
<meta name="description" content="This is the description">
<link rel="stylesheet" href="styles.css" />
</head>
Expand All @@ -14,7 +14,7 @@
<li><a href="about.html">ABOUT</a></li>
</ul>
</nav>
<h1 class="band-name band-name-large">The Generics</h1>
<h1 class="band-name band-name-large"><a href="#">The Generics</a></h1>
</header>

<section class="content-section container">
Expand Down
3 changes: 2 additions & 1 deletion Introduction to CSS/Lesson 1/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<head>
<title>The Generics</title>
<meta name="description" content="This is the description">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
Expand All @@ -14,7 +15,7 @@
</ul>
</nav>
<hr>
<h1>The Generics</h1>
<h1><a href="#">The Generics</a></h1>
<button type="button">Get our Latest Album</button>
<br>
<br>
Expand Down
3 changes: 2 additions & 1 deletion Introduction to CSS/Lesson 1/store.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<head>
<title>The Generics | Store</title>
<meta name="description" content="This is the description">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
Expand All @@ -14,7 +15,7 @@
</ul>
</nav>
<hr>
<h1>The Generics</h1>
<h1><a href="#">The Generics</a></h1>
</header>
<section>
<h2>MUSIC</h2>
Expand Down
7 changes: 6 additions & 1 deletion Introduction to CSS/Lesson 1/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ html, body {
background-blend-mode: multiply;
background-size: cover;
padding-bottom: 30px;
text-decoration: none;
}

.band-name {
Expand All @@ -64,7 +65,10 @@ html, body {
font-size: 4em;
font-family: "Booter - Zero Zero";
font-weight: normal;
color: white;
color: rgb(66, 53, 53);
text-decoration: none;


}

.band-name-large {
Expand All @@ -86,6 +90,7 @@ html, body {
color: #333;
text-align: center;
font-size: 2.5em;
text-decoration: none;
}

.about-band-image {
Expand Down