-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday1webproject.html
79 lines (61 loc) · 2.49 KB
/
day1webproject.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
<!DOCTYPE html>
<html>
<head>
<meta charset = "utf-8">
<title>university website</title>
<link rel="stylesheet" href = "day1styleproject.css">
<link rel="stylesheet" href = "https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<section class = "header">
<nav>
<a href = "index.html"><img src = "logo.png"></a>
<div class = "nav-links" id = "navLinks">
<i class="fa fa-times" onclick = "hideMenu()"></i>
<ul>
<li><a href = "index.html">HOME</a></li>
<li><a href = "index.html">ABOUT</a></li>
<li><a href = "index.html">COURSE</a></li>
<li><a href = "index.html">BLOG</a></li>
<li><a href = "index.html">CONTACT</a></li>
</ul>
</div>
<i class="fa fa-bars" onclick = "showMenu()"></i>
</nav>
<div class = "text-box">
<h1>world biggest university </h1>
<p>making website is now one of the easiest thing in the world.You just need to learn <br>HTML,CSS,Javascript and you are good to go</p>
<a href = "" class = "hero-btn">Visit Us To Know More</a>
</div>
</section>
<!-------courses-------------------->
<section class = "courses">
<h1>Courses We offer</h1>
<p>hello world i am from addis ababa university computer science</p>
<div class = "row">
<div class = "course-col">
<h3>Intermidiate</h3>
<p>hello world i am from addis ababa university computer science hello world i am from addis ababa sciencehello world i am from addis ababa university computer science</p>
</div>
<div class = "course-col">
<h3>degree</h3>
<p>hello world i am from addis ababa university computer science hello world i am from addis ababa sciencehello world i am from addis ababa university computer science</p>
</div>
<div class = "course-col">
<h3>post graduation</h3>
<p>hello world i am from addis ababa university computer science hello world i am from addis ababa sciencehello world i am from addis ababa university computer science</p>
</div>
</div>
</section>
<!----Javascript for toggle menu -->
<script>
var navLinks = document.getElementById("navLinks");
function showMenu(){
navLinks.style.right = "0px";
}
function hideMenu(){
navLinks.style.right = "-200px";
}
</script>
</body>
</html>