-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
28 additions
and
28 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,35 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
|
||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<!-- Sakura.css is a nice-looking defaults stylesheet for simple html pages --> | ||
<!-- <link rel="stylesheet" href="https://unpkg.com/sakura.css/css/sakura.css" type="text/css" /> --> | ||
<link rel="stylesheet" href="https://unpkg.com/mvp.css" /> | ||
|
||
<!-- Sakura.css is a nice-looking stylesheet for simple html pages --> | ||
<!-- <link rel="stylesheet" href="https://unpkg.com/sakura.css/css/sakura.css" type="text/css" /> --> | ||
<!-- <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/alvaromontoro/almond.css@latest/dist/almond.min.css" /> --> | ||
<link rel="stylesheet" href="https://unpkg.com/mvp.css" /> | ||
<!-- and/or link to your own css --> | ||
<link href="/style.css" rel="stylesheet" /> | ||
|
||
<!-- and/or link to your own css --> | ||
<link href="/style.css" rel="stylesheet" /> | ||
<link rel="icon" href="favicon.png" type="image/x-icon" /> | ||
|
||
<link rel="icon" href="favicon.png" type="image/x-icon" /> | ||
<title><%= title %></title> | ||
</head> | ||
|
||
<title>Header</title> | ||
</head> | ||
|
||
<body> | ||
<header> | ||
<nav> | ||
<ul> | ||
<li><a href="/one">one</a></li> | ||
<li><a href="/two">two</a></li> | ||
<li><a href="/three">three</a></li> | ||
<li><a href="/four">four (sessions)</a></li> | ||
<li><a href="/products.json">products(json)</a></li> | ||
<li><a href="/products">products (html)</a></li> | ||
<li><a href="/formDemo">formDemo</a></li> | ||
</ul> | ||
</nav> | ||
</header> | ||
<h1><%= title %></h1> | ||
<body> | ||
<header> | ||
<nav> | ||
<ul> | ||
<li><a href="/one">one</a></li> | ||
<li><a href="/two">two</a></li> | ||
<li><a href="/three">three</a></li> | ||
<li><a href="/four">four (sessions)</a></li> | ||
<li><a href="/products.json">products(json)</a></li> | ||
<li><a href="/products">products (html)</a></li> | ||
<li><a href="/formDemo">formDemo</a></li> | ||
</ul> | ||
</nav> | ||
</header> | ||
<h1><%= title %></h1> | ||
</body> | ||
</html> |