Created
January 18, 2019 10:33
-
-
Save dhanyn10/212aa320d4b3e65258f56829ca74dc98 to your computer and use it in GitHub Desktop.
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> | |
<meta charset="utf-8"> | |
<title>Company page</title> | |
</head> | |
<body> | |
<p>Welcome! Here you can find the following things:</p> | |
<ol> | |
<li><em></em><a href="#logo">Company's logo</a></em></li> | |
<li><a href="#employees">List of employees</a></li> | |
</ol> | |
<h1>Company's logo | |
<p>Company uses the following logos:</p> | |
<ul> | |
<li>New logo:<img src="new_logo.gif"/></li> | |
<li>Old logo:<img src="old_logo.gif"/></li> | |
</ul> | |
<h1>List of employees</h1> | |
<table> | |
<thead> | |
<th>First name</th> | |
<th>Last name</th> | |
</thead> | |
<tr> | |
<td>Mary</td> | |
<td>Williams</td> | |
</tr> | |
<tr> | |
<td>James</td> | |
<td>Smith</td> | |
</tr> | |
</table> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment