-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
38 lines (38 loc) · 1.07 KB
/
Copy pathcontact.html
File metadata and controls
38 lines (38 loc) · 1.07 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
<!DOCTYPE html>
<html>
<head>
<title>PROGRAMMER</title>
<link rel="stylesheet" href="one.css">
</head>
<style>
button{
padding: 15px;
background: green;
color: white;
font-size: medium;
border: solid;
outline: none;
cursor: pointer;
width: 150px;
margin: 20px auto 0;
border-radius: 30px;
border-color: darkgray;
}
button:hover{
transform: scale(1.3);
cursor: pointer;
}
</style>
<body>
<div class="container">
<form>
<h2>CONTACT</h2>
<input id="name" type="text" placeholder="Name" required>
<input id="email" type="text" placeholder="Email" required>
<input id="phone" type="text" placeholder="Subject" required>
<textarea id="message" rows="5" placeholder="Message"></textarea>
<button type="submit">Send</button>
</form>
</div>
</body>
</html>