-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (56 loc) · 1.88 KB
/
index.html
File metadata and controls
68 lines (56 loc) · 1.88 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<section id="hero-section">
<!-- Navigation starts here -->
<nav>
<!-- Logo starts here -->
<div class="logo">
<!-- <img src="" alt=""> -->
<h2>PraRoz</h2>
</div>
<!-- Logo ends here -->
<div class="menu-list">
<a href="/">Activity 1</a>
<a href="./activity2.html">Activity 2</a>
<a href="/activity3.html">Activity 3</a>
<a href="./table-2.html">Activity 4</a>
<a href="">Contact</a>
</div>
<div class="search-area">
<input type="text" placeholder="Type to search">
<button>Search</button>
</div>
</nav>
<!-- Navigation ends here -->
<!-- hero content starting -->
<div class="hero-detail">
<div class="hero-content">
<h2>Web Design & </h2>
<h1>Development</h1>
<h2>Course</h2>
<p>Web design is a specialization of the design stream.they also use HTML,<br>
CSS, WYSIWYG editing sofware, mark up validators etc. <br> to create design element.
</p>
<button>JOIN US</button>
</div>
<form action="">
<div class="login-here">
<h3>Login here</h3>
</div>
<input type="text" placeholder="Enter your email here">
<input type="text" placeholder="Enter your password here"><br>
<button>Login</button>
<p>Don't have an Account? <br><a href="">Sign up</a> here</p>
</form>
</div>
</section>
</body>
</html>