-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (38 loc) · 1.45 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Intro</title>
<link rel="stylesheet" href="./css/index.css"/>
</head>
<body>
<div class="nav-bar">
<div class="nav-bar-wrap">
<nav>
<ul class="nav-items">
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="about.html">About</a>
</li>
<li>
<a href="contact.html"> Contacts</a>
</li>
</ul>
</nav>
</div>
</div>
<div class="content">
<p id="hello">Hello there,</p>
<p id="para"> <em id="lblue">I created this Portfolio for the first assignment</em><em id="orange"> for HTML and CSS. The Portfolio follows</em> a theme which you might
be<em id="lblue"> familiar with for sure .</em><em id="orange"> Yes, you guessed it right it is the</em><em id="green"> Visual Studio Code theme :)
Use the</em> navigation bar for About<em id="blue"> and Contacts. Hope you like it!</em>
</p>
</div>
<div class="footer">
<p style="padding-right: 6%;" > HTML</p><p>CRLF</p><p>UTF-8</p><p>Spaces:4</p><p>Ln 37,Col 14</p>
</div>
</body>