-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (35 loc) · 1.05 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
<!DOCTYPE html>
<html>
<head>
<title>CSS</title>
<link rel="stylesheet" type="text/css" href="style2.css">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<nav>
<ul>
<li>Home</li>
<li><a href="about.html">About</a></li>
<li><a href="login.html">Login</a></li>
</ul>
</nav>
</header>
<section style="color: red" id="red">
<h2>Home</h2>
<p>homegnome</p>
<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>
</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>
</div>
</section>
</body>
</html>