-
Notifications
You must be signed in to change notification settings - Fork 5
web_agency_hero #11
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
4Solome
wants to merge
3
commits into
lgmfred:web_agency_hero
Choose a base branch
from
4Solome:web_agency_hero
base: web_agency_hero
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
web_agency_hero #11
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
---|---|---|
@@ -0,0 +1,55 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title></title> | ||
<link rel="stylesheet" href="styles.css" /> | ||
<style> | ||
|
||
|
||
</style> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<div class="left-side"> | ||
<p>Books > Humor & Entertainment > Humor</p> | ||
<img class="main-img" src="images/book-cover.jpg" /> | ||
</div> | ||
<div class="right-side"> | ||
<h1 class="title"> | ||
How to Talk to Your Cat About Gun Safety: And Abstinence, Drugs, | ||
Satanism, and Other Dangers That Threaten Their Nine Lives | ||
</h1> | ||
|
||
<strong | ||
>by | ||
<a href="https://scrimba.com" target="_blank">Zachary Auburn </a | ||
>(Author)</strong | ||
><br /><br /> | ||
<img class="main-img" src="images/ratings.png" /> <br /><br /> | ||
<strong>The cats of America are under siege!</strong><br /><br /> | ||
|
||
<p> | ||
Long gone are the good old days when a cat’s biggest worries were mean | ||
dogs or a bath. Modern cats must confront satanists, online predators, | ||
the possibility of needing to survive in a post-apocalyptic wasteland, | ||
and countless other threats to their nine lives. | ||
</p> | ||
<p> | ||
For over four decades, the American Association of Patriots have stood | ||
at the vanguard of our country's defense by helping to prepare our | ||
nation's cat owners for the difficult conversations they dread having | ||
with their pets. | ||
</p> | ||
|
||
<p> | ||
Written in a simple Q&A format, How to Talk to Your Cat About Gun | ||
Safety answers crucial questions such as, “What is the right age to | ||
talk to my cat about the proper use of firearms?” and “What are the | ||
benefits of my cat living a lifestyle of abstinence?” and especially | ||
“Why does my cat need to use the internet? Can’t he just play with | ||
yarn like cats used to do?” | ||
</p> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
This file contains hidden or 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,14 +1,23 @@ | ||
<!DOCTYPE html> | ||
|
||
<html> | ||
<head> | ||
<link rel="stylesheet" href="styles.css" /> | ||
<link | ||
href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap" | ||
rel="stylesheet" | ||
/> | ||
</head> | ||
<body></body> | ||
<body> | ||
<div class="container"> | ||
<div class="text-overlay"> | ||
<h1 class="title">Dave's Devs <br />& Designers</h1> | ||
<!-- Split the title into two lines --> | ||
<p>We're a group of devs &</p> | ||
<p>designers who will help your</p> | ||
<p>dream <span class="highlight">come true.</span></p> | ||
<br /><br /> | ||
<button>Let's chat</button> | ||
</div> | ||
</div> | ||
</body> | ||
</html> | ||
|
||
<!-- | ||
Dave's Devs & Designers | ||
We're a group devs & designers who will help your dream come true. | ||
Let's chat | ||
--> |
This file contains hidden or 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 |
---|---|---|
@@ -0,0 +1,47 @@ | ||
body, | ||
html { | ||
margin: 0; | ||
padding: 0; | ||
height: 100%; | ||
font-family: "Open Sans", sans-serif; /* Use Open Sans font */ | ||
} | ||
|
||
.container { | ||
position: relative; | ||
width: 100%; | ||
height: 100vh; /* Use the full viewport height */ | ||
background: url("images/faded-office.png") center center/cover; | ||
} | ||
|
||
.title { | ||
color: #020202; /* Change h1 color to #020202 */ | ||
font-weight: 700; /* Bold font weight */ | ||
} | ||
|
||
.text-overlay { | ||
position: absolute; | ||
top: 50%; | ||
left: 10%; | ||
transform: translateY(-50%); | ||
text-align: left; | ||
color: black; | ||
} | ||
|
||
.text-overlay p { | ||
margin: 0; /* Remove default margins */ | ||
} | ||
|
||
.text-overlay button { | ||
padding: 10px 20px; | ||
background-color: #0ea5e9; | ||
color: white; | ||
border: none; | ||
cursor: pointer; | ||
font-size: 1em; | ||
border-radius: 5px; | ||
font-weight: bold; /* Make button text bolder */ | ||
} | ||
|
||
.highlight { | ||
border-bottom: 2px solid #0ea5e9; /* Thick underline */ | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should not be part of the
web_agency_hero
branch as it is for the Amazon product page challenge