boilerplate.js
Version:
Development Tools
36 lines (32 loc) • 920 B
HTML
<html lang="en">
<head>
<!-- <meta name="turbolinks-cache-control" content="no-preview"> -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Page 1</title>
<link rel="stylesheet" href="../public/css/app.css" />
</head>
<body>
<a href="./test.html">
<p class="yellow">Home</p>
</a>
<a href="./page1.html">
<p class="test">first Paragraph</p>
</a>
<a href="#">
<p class="test">Second Paragraph</p>
</a>
<a href="#">
<p class="test">Third Paragraph</p>
</a>
<a href="#">
<p class="test">Forth Paragraph</p>
</a>
<a href="#">
<p class="test" id="target">Fifth Paragraph</p>
</a>
<script src="../public/js/app.js"></script>
</body>
</html>