-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
64 lines (46 loc) · 1.65 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<html>
<head>
<!--CSS-->
<link rel="stylesheet" href="project.css">
<!--EXTERNAL LINKS-->
<link href="https://fonts.googleapis.com/css?family=Abril">
<link href="https://fonts.googleapis.com/css?family=Gayathri&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Orbitron&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Lacquer&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
<!--SCRIPT-->
<script src="https://kit.fontawesome.com/95dfb992ec.js" crossorigin="anonymous"></script>
<style>
</style>
</head>
<body alink="white" vlink="white" link=white>
<!--=================Nav section starts================-->
<nav>
<div id="nav-top">
<a href="index.html"><li class="logo"><div class="fab fa-python"></div> PYCHAMP</li> </a>
<div id="menu-btn">
<div class="bar1"></div>
<div class="bar2"></div>
<div class="bar3"></div>
</div>
</div>
<ul id="links">
<li><a href="./home.html">Home</a></li>
<li><a href="./lesson.html">Lessons</a></li>
<li><a href="./quiz.html">Quiz</a></li>
<li><a href="./signup.html">Sign Up</a></li>
</ul>
</nav>
<br>
<!--=====================Nav section ends===================-->
<div class="mainbody">
<div class="toptop ">
<span id="o1">Welcome </span>
<span id="o2">To </span>
<span id="o3">PYCHAMP </span>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script type="text/javascript" src="project.js"></script>
</body>
</html>