-
Notifications
You must be signed in to change notification settings - Fork 30
/
see_also.html
46 lines (34 loc) · 1.28 KB
/
see_also.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
44
45
46
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<!-- Including the main.css file for styling -->
<link rel="stylesheet" href="css/main.css">
<!-- Including the Font Awesome CSS library for icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<!-- Navigation bar -->
<div class="topnav" id="myTopnav">
<!-- Links to different sections -->
<a href="index.html">Abstract</a>
<a href="section1.html">Section 1</a>
<a href="section2.html">Section 2</a>
<a href="section3.html">Section 3</a>
<!-- Active link pointing to the see_also.html page -->
<a class="active" href="see_also.html">See Also</a>
<a href="references.html">References</a>
<!-- "Hamburger menu" / "Bar icon" to toggle the navigation links on smaller screens -->
<a href="javascript:void(0);" class="icon">
<i class="fa fa-bars"></i>
</a>
</div>
<!-- Page content -->
<div class="content">
<!-- See Also section content -->
This is the See Also section.
</div>
<!-- Including the main.js file for JavaScript functionality -->
<script src="js/main.js"></script>
</body>
</html>