Skip to content

Instantly share code, notes, and snippets.

@rozium
Created January 18, 2019 14:50
Show Gist options
  • Save rozium/f0eee7838f07937ab01c08e81a6c4404 to your computer and use it in GitHub Desktop.
Save rozium/f0eee7838f07937ab01c08e81a6c4404 to your computer and use it in GitHub Desktop.
Jabar Digital Service - Frontend - 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>
<tbody>
<tr>
<td>Mary</td>
<td>Williams</td>
</tr>
<tr>
<td>James</td>
<td>Smith</td>
</tr>
</tbody>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment