New Web - HTML
New Web - HTML
html
Line wrap
1 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4 <meta charset="UTF-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1.0">
6 <title>Index</title>
7 <link rel="stylesheet" href="New web.css">
8 </head>
9 <body>
10 <h1>PraRoz</h1>
11 <nav class="navication">
12 <a href="#" class="home">HOME</a>
13 <a href="#" class="about">ABOUT</a>
14 <a href="#" class="service">SERVICE</a>
15 <a href="#" class="design">DESIGN</a>
16 <a href="#" class="contact">CONTACT</a>
17 </nav>
18 <header class="search">
19 <input type="text" class="name" placeholder="Type to search">
20 <button type='submit' class='submit'>Search</button>
21 </header>
22 <div class="container">
23 <label for="web" class="web">Web Design &</label><br/>
24 <label for="devlop" class="devlop">Development</label><br/>
25 <label for="course" class="course">Course</label><br/>
26 <p>
27 Web Design is a specialisation of the design stream. They also use HTML,<br>
28 CSS,WYSIWYG editing software. mark up validation etc..,<br/>
29 to create design elements.
30 </p>
31
32 <button type="submit"class="join">JOIN US</button>
33 </div>
34
35 <div class="login">
36 <form>
37 <h2>Login Here</h2>
38 <input type="text" class="username" placeholder="Enter Username or Email Here">
39 <br/>
40 <input type="password" class="password" placeholder="Enter Password Here">
41 <br/>
42 <input type="submit" class="button" value="Login">
43 <br/>
44 <p>Don't have an account?<br/>
45 <div><a href="#">Sign up </a>here</div></p>
46 <label>Log in with</label>
47 <img src="icon1.png" alt="" class="icon1">
48 <img src="icon2.png" alt="" class="icon2">
49 <img src="icon3.png" alt="" class="icon3">
50 </form>
51 </div>
52 </body>
53 </html>