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
body { | |
background-color: powderblue; | |
margin: 0; | |
} | |
h1 { | |
color: red; | |
} | |
h2 { |
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
body { | |
background-color: powderblue; | |
margin: 0; | |
} | |
h1 { | |
color: red; | |
} | |
h2 { |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<link rel="stylesheet" href="styles.css"> | |
</head> | |
<body> | |
<h1 id="name"><b>Your Name</b></h1> | |
<p><i>About yourself.</i></p> | |
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
body { | |
background-color: powderblue; | |
} | |
h1 { | |
color: red; | |
} | |
h2 { | |
color: blue; |
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
body { | |
background-color: powderblue; | |
} | |
h1 { | |
color: red; | |
} | |
h2 { | |
color: blue; |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<link rel="stylesheet" href="styles.css"> | |
</head> | |
<body> | |
<h1><b>Your Name</b></h1> | |
<p><i>About yourself.</i></p> |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
body {background-color: powderblue;} | |
h1 {color: red;} | |
h2 {color: blue;} | |
h4 {color: brown;} | |
p {color: green;} | |
</style> |
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
<h1 style="color:Red;"><b>Your Name</b></h1> | |
<p style="color:Green;"><i>About yourself.</i></p> |
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
<div style="background-color:yellow;"> | |
<h1 style="color:Red;">Your Name</h1> | |
<p style="color:Green;">About yourself.</p> | |
<a href="your url">your link text</a> | |
<img src="profile_pic.jpg" alt="Profile Picture"> | |
<p style="color:Blue;">This is fun.</p> | |
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
<div> | |
<h1>Your Name</h1> | |
<p>About yourself.</p> | |
<a href="your url">your link text</a> | |
<img src="profile_pic.jpg" alt="Profile Picture"> | |
</div> |
NewerOlder