forked from skillcrush/git-practice
-
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.
Merge pull request skillcrush#1209 from sontutts/advice
Added my personal advice page and according css
- Loading branch information
Showing
3 changed files
with
65 additions
and
5 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 |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<link rel="stylesheet" type="text/css" href="../css/sonja-tuttolomondo-stovall.css"> | ||
<!-- replace Skillcrush with your name here --> | ||
<title>Sonja's Advice For Newbies</title> | ||
</head> | ||
|
||
<!-- replace skillcrush with your name here --> | ||
|
||
<body class="sonja-advice"> | ||
<header> | ||
<a href="../index.html">Back to Main Page</a> | ||
<h1>Hi, my name is Sonja and I have some advice for you!</h1> | ||
</header> | ||
|
||
<section> | ||
<div class="advice"> | ||
<h4>Practice Helps!</h4> | ||
<p>There are so many different commands and processes to learn while coding. Keep practicing and you | ||
will get it. The steps will become more memorable.</p> | ||
|
||
<h4>When practice is not helping, look to the resources available to you.</h4> | ||
<p> | ||
Don't be afraid to search tthe internet, or look at the many resources available to you. This isn't cheating, this is being smart. | ||
</p> | ||
|
||
<p>This is a normal part of the process of learning a new technology, and in fact, it's a critical part | ||
of the process.</p> | ||
</div> | ||
</section> | ||
|
||
<footer> | ||
<!-- replace Skillcrush with your name here --> | ||
<p>© Copyright Sonja 2023.</p> | ||
</footer> | ||
</body> | ||
|
||
</html> |
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
|
||
body { | ||
background: lightpink; | ||
} | ||
|
||
h1, | ||
h4 { | ||
text-decoration: underline; | ||
} | ||
h1 { | ||
color: rgb(82, 73, 73); | ||
} | ||
h4 { | ||
color: blue; | ||
} | ||
footer { | ||
color: rgb(61, 83, 17); | ||
} |
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