Making websites
...at least part of it
Front-End is creating user experience and interactivity.
as opposed to Back-End which is mostly servers and databases.
Ranya Bellouki, MSc Management of Innovation @ RSM
Daniel Batubara, MSc Business Information Management @ RSM
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
</body>
</html><h1>This is a Big Title!</h1>
<h2>This is a smaller Title!</h2>
<h3>This is even smaller!</h3>
<h4>This is even smallerer!!</h4>
<p>The above are different headings tags that you can
use in HTML. They are very useful when you want to
highlight the importance of some text, as you know,
and I am just talking shit at this point to show you
the use of the paragraph tag.</p><!DOCTYPE html>
<html>
<head>
<title>Coding is Awesome</title>
</head>
<body>
<img src="URL or filename.extension" alt="what is it tho">
</body>
</html><!DOCTYPE html>
<html>
<head>
<title>Coding is Awesome</title>
</head>
<body>
<a href="URL" target="_blank"></a>
</body>
</html><!DOCTYPE html>
<html>
<head>
<title>Coding is Awesome</title>
</head>
<body>
<h3>These are a few of my favorite movie genres</h3>
<ul>
<li>Zombies</li>
<li>Sharks</li>
<li>Post-Apocalyptic</li>
<li>Psychological Thrillers</li>
</ul>
</body>
</html><!DOCTYPE html>
<html>
<head>
<title>Coding is Awesome</title>
</head>
<body>
<table>
<thead>
<tr>
<th>Name</th>
<th>Email</th>
<th>Phone number</th>
</tr>
</thead>
<tbody>
<tr>
<td>Ranya</td>
<td>ranyabellouki@gmail.com</td>
<td>1-800-CODING</td>
</tr>
<tr>
<td>Daniel</td>
<td>dn.batubara@gmail.com</td>
<td>1-800-TURING</td>
</tr>
</tbody>
</table>
</body>
</html>