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>My Web Page</title> | |
</head> | |
<body> | |
<h1>Welcome to my web page!</h1> | |
<p>This is a paragraph of text on my web page.</p> | |
<a href="https://www.example.com">Click here to visit Example.com</a> | |
</body> |
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> |
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
<html> | |
<head> | |
<title>My HTML Document</title> | |
</head> | |
<body> | |
<h1>Welcome to my HTML document!</h1> | |
<p>This is a paragraph of text.</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
<head> | |
<title>My HTML Document</title> | |
<link rel="stylesheet" href="styles.css"> | |
<script src="script.js"></script> | |
</head> |
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
<body> | |
<h1>Welcome to my HTML document!</h1> | |
<p>This is a paragraph of text.</p> | |
<img src="my-image.jpg" alt="A picture of something."> | |
<a href="https://www.example.com">Click here to visit Example.com</a> | |
</body> |
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>My XHTML Page</title> | |
</head> | |
<body> | |
<h1>Welcome to my page!</h1> | |
<p>This is some text on my page.</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>This is a heading</h1> | |
<p>This is a paragraph with <a href="#">a link</a> and <span>some text</span>.</p> |
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
<a href="https://www.example.com">Click here</a> |
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
<img src="path/to/image.jpg" alt="A beautiful image"> |
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
<table> | |
<tr> | |
<td>First Name</td> | |
<td>Last Name</td> | |
<td>Email Address</td> | |
</tr> | |
<tr> | |
<td>John</td> | |
<td>Doe</td> | |
<td>john.doe@example.com</td> |
OlderNewer