-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (28 loc) · 807 Bytes
/
index.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
<!DOCTYPE html>
<head>
<meta charset="utf-8" lang="en">
<title> Welcome to my first Webpage</title>
<link rel="icon" href="/Images/Webpage-Icon.png" media="screen" type="image/png" title="no title" >
</head>
<body>
<header>
<nav>
<a href="Docs/about.html" target="_self" tabindex="1">About this page</a>
</nav>
</header>
<main>
<p>
This is the main section of the webpage<br>
<figure>
<img src="/Images/Welcome.jpg" width="75%" alt="Welcome!">
<figcaption>Welcome to my Webpage! </figcaption>
</figure>
</p>
</main>
<footer>
<p>
© Vikam Nadathur 2016
</p>
</footer>
</body>
</html>