-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
38 lines (35 loc) · 1.62 KB
/
home.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
<!DOCTYPE html>
<html>
<header>
<meta name="viewport" content="with=device-width, initial-scale=1.0">
<title>Universty website design</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/fontawesome.min.css">
</header>
<body>
<section class="header">
<nav>
<a href="index.html"><img src="images/logo.png" ></a>
<div class="nav-links" id="navLinks">
<i class="fa fa-times" onclick="hideMenu()"></i>
<ul>
<li> <a href="">HOME</a> </li>
<li><a href="">ABOUT</a> </li>
<li><a href="">COURSE</a> </li>
<li><a href="">BLOG</a></li>
<li><a href="">CONTACT</a> </li>
</ul>
</div>
<i class="fa fa-bars" onclick="showMenu()"></i>
</nav>
<div class="text-box">
<h1>World's Biggest University</h1>
<p>Making the website become one of the most easiest thing in the world.You just have to learn HTML, CSS,<br>Javascript and you are good to go</p>
<a href="register.html" class="hyper-text" onclick="" target="_self">Register To Day</a>
</div>
</section>
</body>
</html>