Skip to content

Instantly share code, notes, and snippets.

@azulkipli
Last active January 4, 2019 16:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save azulkipli/7199baf4a5a13168a51f7ae91605e5b1 to your computer and use it in GitHub Desktop.
Save azulkipli/7199baf4a5a13168a51f7ae91605e5b1 to your computer and use it in GitHub Desktop.
JDS_HTML
<!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><a href="#logo"><em>Company's logo</em></a></li>
<li><a href="#employees">List of employees</a></li>
</ol>
<h1>Company's logo</h1>
<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