forked from mayankmehta8/Flask_app_with_SQL
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstudyMaterial.html
More file actions
30 lines (25 loc) · 868 Bytes
/
studyMaterial.html
File metadata and controls
30 lines (25 loc) · 868 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
26
27
28
29
30
<!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">
<link rel="stylesheet" href="/static/stylesheets/index.css">
<link rel="stylesheet" href="/static/stylesheets/nav.css">
<title>DocumenStudy Material</title>
</head>
<body>
<header>
<nav id="nav">
<ul>
<!-- <li><a href="#"><b><span id="logo"><img src="./static/images/ourlogo.png" alt=""></span></b></a></li> -->
<li><a href="./index.html">Home</a>
<li><a href="./qp.html">Question Paper Generator</a>
<li><a href="./chat.html">Chat Room</a>
<li><a href="./login.html">Sign Up</a>
<li>
</ul>
</nav>
</header>
</body>
</html>