Created
October 13, 2020 12:37
-
-
Save saipraveen-a/75b41e5c64d78f2847d638e4656d984f to your computer and use it in GitHub Desktop.
HTML & CSS Challenges - External Style Sheet
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<link rel="stylesheet" type="text/css" href="style.css"> | |
<title>CSS Challenge - Move to External Stylesheet</title> | |
</head> | |
<body> | |
<h1>The Header</h1> | |
<p style="">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod | |
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, | |
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo | |
consequat.</p> | |
</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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>CSS Challenge - Move to External Stylesheet</title> | |
</head> | |
<body> | |
<h1 style="font-size: 60px; padding-bottom: 10px; border-bottom: 2px solid black; margin: 30px auto; width: 500px; text-align: center;">The Header</h1> | |
<p style="width: 500px; margin: 30px auto; text-align: center;">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod | |
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, | |
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo | |
consequat.</p> | |
</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
h1 { | |
font-size: 60px; | |
padding-bottom: 10px; | |
border-bottom: 2px solid black; | |
margin: 30px auto; | |
width: 500px; | |
text-align: center; | |
} | |
p { | |
width: 500px; | |
margin: 30px auto; | |
text-align: center; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment