Skip to content

Commit

Permalink
First Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
anirban-baisya committed Aug 5, 2021
0 parents commit 0a3da66
Show file tree
Hide file tree
Showing 2 changed files with 69 additions and 0 deletions.
50 changes: 50 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<link rel="stylesheet" href="style.css">
<body>
<header><h2> -: Create User :- </h2></header>

<section>
<form >
Username: <input type="text" >
<br><br>
Email: <input type="email" placeholder="abc@xyz.com" >
<br><br>
Password: <input type="password" >
<br><br>
Confirm: <input type="password" >
<br><br>
Display Name: <input type="text" >
<br><br>
Name: <input type="text" placeholder="First" >
<input type="text" placeholder="Last" >
<br><br>
Nickname: <input type="text" >
<br><br>
Website: <input type="url" placeholder="https://www.xyz.com">
<br><br>
Bio: <br><br><textarea cols="30" rows="10"></textarea>
<br><br>
Date & Time : <input type="datetime-local" name="" id="">
<br><br>
Give feedback 1-5 :
<input type="radio" name="feed" >:1
<input type="radio" name="feed" >:2
<input type="radio" name="feed" >:3
<input type="radio" name="feed" >:4
<input type="radio" name="feed" >:5
<br><br><br><br>
<input type="submit" value="submit">
</form>
</section>




</body>
</html>
19 changes: 19 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
form{
text-align: center;
color:whitesmoke;
background-color: #2ddb9b;
transition: 0.2s;
padding: 0.5px;
margin: 50px;
padding-bottom:50px;
padding-top:50px;
}
header{
text-align: center;
}
form:hover{
background-color: #5e4fa2



}

0 comments on commit 0a3da66

Please sign in to comment.