16 lines
420 B
HTML
16 lines
420 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>This is a test site</title>
|
|
<link rel="stylesheet" href="/css/main.css">
|
|
</head>
|
|
<body>
|
|
<h1>Hello!</h1>
|
|
<p>This is a paragraph, we load one CSS, one JavaScript and one image.<p>
|
|
<p><a href="/simple/">Simple</a></p>
|
|
<p><a href="/search/">Search</a></p>
|
|
<img src="/img/pirate.png">
|
|
<script type="text/javascript" src="/js/jquery-2.1.4.min.js"></script>
|
|
</body>
|
|
</html>
|