blob: 79e8af01173f012b79c78f71c908270431bcd5fb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
<!doctype html>
<html lang="en"><head><meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="../css/main.css">
<link rel="shortcut icon" href="../i/me.png">
<title>Name's Website: Template</title></head><body>
<header>
<h1><a id="nav-btn">☰</a>
<a href="..">Template Page</a>
<i>Name's Website</i></h1>
</header>
<nav id="menu">
<a href=".." class="btn">Home</a>
<a href="../projects" class="btn">Projects</a>
<a href="../classes" class="btn">Classes</a>
<a href="../contact" class="btn">Contact</a>
<a href="" class="btn">Template</a>
<a href="http://github.com/4stc/porter" class="btn">Source</a>
<i>Name / Template</i>
</nav>
<main class="grid"><div>
<h2>Column 1</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit,
sed do eiusmod tempor incididunt ut labore et dolore magna
aliqua. Ut enim ad minim veniam, quis nostrud exercitation
ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
<img width="300" src="../i/me.png" alt="an example">
</div><div>
<h2>Column 2</h2>
<h3>Example List</h3>
<ul>
<li>example 1</li>
<li>example 2</li>
<li>example 3</li>
</ul>
<h3>Another Example</h3>
<ul>
<li>example 1</li>
<li>example 2</li>
<li>example 3</li>
</ul>
</div></main>
<footer>
<p>Made by Name Surname |
<a href="../i/template_mobile.png" target="_blank">Mobile Wireframe</a> |
<a href="../i/template_desktop.png" target="_blank">Desktop Wireframe</a>
</p>
</footer>
<script src="../js/main.js"></script>
</body></html>
|