-
Notifications
You must be signed in to change notification settings - Fork 13
/
about.html
63 lines (51 loc) · 2.26 KB
/
about.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
<!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</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><span>About this course</span> </h1><br>
<p class="par">Web development is everything involved in the
creation of a website. <br>From HTML tutorials to in-depth courses
in responsive web design that <br>
combine HTML, CSS and JavaScript, individuals can learn
the latest <br> client and server-side coding practices. Discover
the latest web design <br> software and online web design courses
including self-paced web <br> programming courses
taught by experts. </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='project.html';">
<p class="link">Don't have an account<br>
<a href="#">Sign up </a> here</a></p>
</div>
</div>
</div>
</div>
</div>
<script src="https://unpkg.com/[email protected]/dist/ionicons.js"></script>
</body>
</html>