-
Notifications
You must be signed in to change notification settings - Fork 13
/
home.html
59 lines (46 loc) · 2 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<title>Webpage Design</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="main">
<div class="navbar">
<div class="icon">
<h2 class="logo">LearnWeb</h2>
</div>
<div class="menu">
<ul>
<li><a href="home.html">HOME</a></li>
<li><a href="about.html">ABOUT</a></li>
<!-- <li><a href="service.html">SERVICE</a></li> -->
<li><a href="contact.html">CONTACT</a></li>
</ul>
</div>
<div class="search">
<input class="srch" type="search" name="" placeholder="Type To text">
<a href="#"> <button class="btn">Search</button></a>
</div>
</div>
<div class="content">
<h1>Front end<br><span>Development</span> <br>Course</h1>
<p class="par">This course is designed to start you on a path toward
<br>future studies in front end development, no matter how
<br>little experience or technical knowledge you currently have. </p>
<div class="form">
<h2>Login Here</h2>
<input type="email" name="email" placeholder="Enter Email Here">
<input type="password" name="" placeholder="Enter Password Here">
<input type="button" class="btnn" value="Login"
onclick="location.href='afterLogin.html';">
<p class="link">Don't have an account<br>
<a href="signup.html">Sign up </a> here</a></p>
</div>
</div>
</div>
</div>
</div>
<script src="https://unpkg.com/[email protected]/dist/ionicons.js"></script>
</body>
</html>