HTML
Templates
HTML5 Basic
This file contains 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 lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<link rel="stylesheet" href="css/main_stylesheet.css" /> | |
<link rel="shortcut icon" href="/favicon.ico" /> | |
<title> | |
Title || URI | |
</title> | |
</head> | |
<body> | |
<div id="content"> | |
<h1>Heading 1</h1> | |
<p>Text body. | |
<br/> | |
<ul> | |
<li><a href="/resource-1">Resource 1</a></li> | |
<li><a href="/resource-2" target="_blank" >Resource 2</a></li> | |
<li><a href="/resource-3">Resource 3</a></li> | |
</ul> | |
</p> | |
</div> | |
<footer> | |
<p>Footer text.</p> | |
</footer> | |
</body> | |
</html> |