-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
35 lines (34 loc) · 1.52 KB
/
about.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<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>Voltix | About</title>
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/css/materialize.min.css">
</head>
<body class="grey">
<script type="text/javascript" src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/js/materialize.min.js"></script>
<nav class="grey darken-3">
<div>
<div class="nav-wrapper container">
<a href="#" class="brand-logo left">Voltix Web Designs</a>
<a href="#" data-activates="mobile-demo" class="button-collapse"><i class="material-icons">menu</i></a>
<ul id="nav-mobile" class="right hide-on-med-and-down">
<li class="waves-effect"><a href="index.html">Home</a></li>
<li class="active waves-effect"><a href="about.html">About</a></li>
<li class="waves-effect"><a href="contact.html">Contact</a></li>
<li class="waves-effect"><a href="projects.html">Projects</a></li>
<li class="waves-effect"><a href="images.html">Random Images</a></li>
</ul>
</div>
</div>
</nav>
<div class="container">
<p class="flow-text center">Nothing to see here, move along... :)</p>
</div>
</body>
</html>