-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_index.html
42 lines (36 loc) · 944 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
<!DOCTYPE html>
<html>
<head>
<title>CSS</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header style="background-color: green; color: blueviolet;">
<nav>
<ul>
<li>Home</li>
<li><a href="C:\Users\Benedict\Desktop\New web\_about.html">About</a></li>
<li><a href="_login.html">Login</a></li>
</ul>
</nav>
</header>
<section>
<h2>Home<p>homegnome</p></h2>
<div id="div1">
<p class="webtext active">Lorem Ipsum.</p>
<p class="webtext">Lorem Ipsum.</p>
<p class="webtext">Lorem Ipsum.</p>
<p class="webtext">Lorem Ipsum.</p>
<p class="webtext">Lorem Ipsum.</p>
</div>
<div id="div2">
<p class="webtext active">Lorem Ipsum.</p>
<p class="webtext">Lorem Ipsum.</p>
<p class="webtext">Lorem Ipsum.</p>
<p class="webtext">Lorem Ipsum.</p>
<p class="webtext">Lorem Ipsum.</p>
<p class="webtext">Lorem Ipsum.</p>
</div>
</section>
</body>
</html>