-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
81 lines (69 loc) · 2.95 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!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">
<title>prototype</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/fontawesome.min.css">
</head>
<body>
<section class="header">
<nav onclick="showmenu">
<div class="top_links" id="tp_links" >
<i class="fa fa-times-circle" onclick="hidemenu" ></i>
<div class="left_links">
<ul>
<li><a href="">Home</a></li>
<li><a href="">Contact Us</a></li>
<li><a href="">About Us</a></li>
</ul>
</div>
<div class="right_links">
<ul>
<li><a href="">Login</a></li>
<li><a href="">Register</a></li>
</ul>
</div>
</div>
<i class="fa fa-bars" onclick="showmenu"></i>
</nav>
<div class="text_box">
<h1>The cutest things in the world</h1>
<p>This is the page where you can find the most cute things in the
world. <br> More things will be added if there come any.
</p>
<a class="hero_but" href="">Visit google to know more</a>
</div>
</section>
<!-- Section 2 for courses -->
<section class="courses">
<h1>Courses we offer</h1>
<p>These are the best courses in India offered till present</p>
<div class="row">
<div class="course_col">
<h3>Programming</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Mollitia illum repellendus laudantium soluta maxime velit repellat ea neque suscipit tempora commodi illo, eos itaque error numquam voluptas expedita possimus ipsum?</p>
</div>
<div class="course_col">
<h3>Machine Learning</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Mollitia illum repellendus laudantium soluta maxime velit repellat ea neque suscipit tempora commodi illo, eos itaque error numquam voluptas expedita possimus ipsum?</p>
</div>
<div class="course_col">
<h3>Korean Dramas</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Mollitia illum repellendus laudantium soluta maxime velit repellat ea neque suscipit tempora commodi illo, eos itaque error numquam voluptas expedita possimus ipsum?</p>
</div>
</div>
</section>
<script>
var navlinks = document.getElementById('tp_links')
function showmenu() {
navlinks.style.right = '0'
}
function hidemenu() {
navlinks.style.right = '-250px'
}
</script>
</body>
</html>