-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathside-navigation-menu.html
More file actions
30 lines (26 loc) · 1.59 KB
/
side-navigation-menu.html
File metadata and controls
30 lines (26 loc) · 1.59 KB
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
<html>
<head>
<title>Side Navigation Menu</title>
<meta charset="utf-8">
<meta name="Author" content="https://pablorgarcia.github.io/" />
<meta name="description" content="Side Navigation Menu & without JS" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="side-navigation-menu.css" media="screen" type="text/css" rel="stylesheet" />
</head>
<body>
<nav>
<ul>
<li><img src="http://www.pablogarciafernandez.com/images/svg/side-navigation-menu_home.svg" alt="Home"><a href="#">Home</a></li>
<li><img src="http://www.pablogarciafernandez.com/images/svg/side-navigation-menu_about.svg" alt="About"><a href="#">About</a></li>
<li><img src="http://www.pablogarciafernandez.com/images/svg/side-navigation-menu_work.svg" alt="Work"><a href="#">Work</a></li>
<li><img src="http://www.pablogarciafernandez.com/images/svg/side-navigation-menu_contact.svg" alt="Contact"><a href="#">Contact</a></li>
</ul>
</nav>
<section>
<h1>Side navigation menu</h1>
<h2>Created with <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="30px" height="30px" viewBox="0 0 512 512" enable-background="new 0 0 512 512" xml:space="preserve">
<path d="M256,462L53.676,284.644V130.646L169.034,50L256,104.977L342.965,50l115.359,80.646v153.998L256,462z M93.801,266.457L256,408.64l162.198-142.183V151.553l-76.35-53.375L256,152.447l-85.849-54.27l-76.351,53.375V266.457z"/></svg>
by <a href="https://pablogarcia.dev" target="_blank">Pablo García</a></h2>
</section>
</body>
</html>