1<html>
2 <head>
3 <title>
4 Log In or Sign Up
5 </title>
6 </head>
7 <body>
8 <div>
9 <input type="textarea" placeholder="Enter your username">
10 <br>
11 <br>
12 <input type="password" placeholder="Enter your username">
13 <br>
14 <br>
15 <input type="submit" value="Log In">
16 <br>
17 <br>
18 </div>
19 <div>
20 <p>
21 Or Sign Up!
22 </p>
23 <br>
24 <br>
25 <input type="textarea" placeholder="Create a username">
26 <br>
27 <br>
28 <input type="password" placeholder="Create a password">
29 <br>
30 <br>
31 <input type="submit" value="Sign Up">
32 </div>
33 </body>
34</html>
1<html>
2 <head>
3 <title>Login page example</title>
4 <style>
5 input{
6 font-size: 20;
7 }
8 body{
9 background-color: red;
10 }
11 </style>
12 </head>
13 <body>
14 <input placeholder="Username"/>
15 <br />
16 <input type="password" placeholder="Password"/>
17 <br/>
18 <br/>
19 <button>Login</button>
20 </body>
21
22</html>