-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsection2.php
More file actions
25 lines (17 loc) · 741 Bytes
/
section2.php
File metadata and controls
25 lines (17 loc) · 741 Bytes
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
<!--This is Section 2-->
<?php include('head.php'); ?>
<body>
<div class="header">
<a href="index.php" > <h1>My Wesbite <h1/><a/>
</div>
<div class="container">
<ul>
<li > <a href="section1.php"> First Section <a/> </li>
<li class="active" > <a href="section2.php"> Second Section <a/> </li>
<li > <a href="section3.php"> Third Section <a/> </li>
</ul>
<h1>Section 2</h1>
<p> Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptate, laboriosam doloribus dolorem necessitatibus facere quasi labore esse vero voluptatem. Sunt distinctio culpa ipsam dolorum corporis vitae fuga error mollitia quidem. <p/>
<?php include('footer.php'); ?>
</body>
</html>