-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio.html
50 lines (41 loc) · 1.02 KB
/
portfolio.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<DOCTYPE html>
<html>
<!-- head and metadata -->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=divice width">
<meta name="description" content="My Portfolio">
<meta name="keywords" content="portfolio, ravi, raina">
<meta name="author" content="Ravi Raina">
<title>Ravi Raina | Portfolio</title>
<link rel="stylesheet" type="text/css" href="./css/style.css">
</head>
<!-- actual website -->
<body>
<!-- header -->
<header>
<div class="container">
<div id="branding">
<h1><span class="highlight">Ravi</span> Raina</h1>
</div>
<nav>
<ul>
<li><a href="index">Home</a></li>
<li><a href="about">About</a></li>
<li class="current"><a href="portfolio">Portfolio</a></li>
</ul>
</nav>
</div>
</header>
<!-- main area -->
<section id="main">
<div class="container">
</div>
</section>
<!-- add additional stuff here -->
<!-- footer -->
<footer>
<p>© 2019 Ravi Raina, All rights reserved</p>
</footer>
</body>
</html>