Skip to content
Snippets Groups Projects
Commit fae99190 authored by Nour, Arezou's avatar Nour, Arezou
Browse files

Upload New File

parent 3fd59c82
No related branches found
No related tags found
No related merge requests found
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
form{
width: 50%;
padding:30px;
box-sizing: border-box;
background-color: #6f0f0f;
margin: 50px auto;
box-shadow: 0 0 25px #7d7676;
}
label{
display: inline-block;
text-transform: capitalize;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
margin-bottom: 20px;
color: whitesmoke;
font-size: 12px;
font-weight: bold;
}
input[type="text"]{
width: 50%;
display: block;
height: 25px;
margin-bottom: 15px;
}
</style>
</head>
<body>
<form action="#" method="post">
<label for="fullname">fullname</label>
<input type="text" name="fullname" id="fullname"
placeholder="fullname">
<label for="email">email</label>
<input type="text" name="email" id="email"
placeholder="email">
<label for="comment">comment</label>
<input type="text" name="comment" id="comment"
placeholder="comment">
<input type="submit">
</form>
</body>
</html>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment