-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (51 loc) · 2.05 KB
/
Copy pathindex.html
File metadata and controls
52 lines (51 loc) · 2.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PraRoz Web Design & Development Course</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="exercise 2/styles.css">
<link rel="stylesheet" href="../Exercise 3/styles.css">
<link rel="stylesheet" href="../exercise 4/styles.css">
</head>
<body>
<header>
<div class="navbar">
<div class="logo">PraRoz</div>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="exercise 2/exercise.html">exercise 2</a></li>
<li><a href="exercise 2/exercise 3/exercise.html">exercise 3</a></li>
<li><a href="exercise 4/exercise.html">exercise 4</a></li>
</ul>
</nav>
<div class="search-container">
<input type="text" placeholder="Type to Search">
<button>Search</button>
</div>
</div>
</header>
<main>
<div class="main-content">
<h1>Web Design & <span>Development</span> Course</h1>
<p>Web Design is a specialisation of the design stream. They also use HTML,
<p> CSS, WYSIWYG editing software, mark up validators etc.,</p>
<p>to create design elements.</p>
<button class="join-btn">Join Us</button>
</div>
<div class="login-form">
<h2>Login Here</h2>
<form>
<input type="email" placeholder="Enter Email Here" required>
<input type="password" placeholder="Enter Password Here" required>
<button type="submit">Login</button>
</form>
<p class="login">Don't have an account? </p>
<p class="login"><a href="#"> Sign up<span class="sign-up"> here</span></a></p>
<p class="login">Log in with</p>
</div>
</main>
</body>
</html>