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> | |
<title>HTML - A short guide</title> | |
</head> | |
<body> | |
I am learning HTML | |
</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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>HTML - A short guide</title> | |
</head> | |
<body> | |
<h1>Heading Level 1</h1> | |
<h2>Heading Level 2</h2> | |
<h3>Heading Level 3</h3> | |
<h4>Heading Level 4</h4> |
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> | |
<title>HTML - A short guide</title> | |
</head> | |
<body> | |
<p>This is a paragraph.</p> | |
<p>This is another paragraph.</p> | |
<p>This is yet another paragraph.</p> | |
<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> | |
<title>HTML - A short guide</title> | |
</head> | |
<body> | |
<ul> | |
<li>Unordered List Item 1</li> | |
<li>Unordered List Item 2</li> | |
<li>Unordered List Item 3</li> |
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> | |
<title>HTML - A short guide</title> | |
</head> | |
<body> | |
<a href="https://medium.com/">Medium</a><br> | |
<a href="https://www.google.com/">Google</a><br> | |
<a href="https://twitter.com/">Twitter</a> | |
</body> |
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> | |
<title>HTML - A short guide</title> | |
</head> | |
<body> | |
<a href="https://medium.com/">Medium</a> | |
</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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>HTML - A short guide</title> | |
</head> | |
<body> | |
<a href="https://medium.com/" target="_blank">Medium</a> | |
</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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>HTML - A short guide</title> | |
</head> | |
<body> | |
<p>Email Link<a href="mailto:[email protected]">Send Email</a><p> | |
</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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>HTML - A short guide</title> | |
</head> | |
<body> | |
<h1>Home Page</h1> | |
<a href="about.html">Link to About Page</a> | |
</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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>HTML - A short guide</title> | |
</head> | |
<body> | |
<h1>About Page</h1> | |
<a href="index.html">Link to Home Page</a> | |
</body> | |
</html> |
OlderNewer