Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
KLUGLUG
Reachy
Commits
41d06e25
Commit
41d06e25
authored
Apr 02, 2021
by
Jasvitha Allamsetty
Browse files
Upload New File
parent
66e5a846
Pipeline
#37783
canceled with stages
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
front end/ContactUs.html
0 → 100644
View file @
41d06e25
<!DOCTYPE html>
<html>
<head>
<a
href=
"index.html"
style=
"text-align:left;color:black;"
>
Home
</a>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
>
<style>
body
{
font-family
:
Arial
,
Helvetica
,
sans-serif
;}
*
{
box-sizing
:
border-box
;}
input
[
type
=
text
],
select
,
textarea
{
width
:
100%
;
padding
:
12px
;
border
:
1px
solid
#ccc
;
border-radius
:
4px
;
box-sizing
:
border-box
;
margin-top
:
6px
;
margin-bottom
:
16px
;
resize
:
vertical
;
}
input
[
type
=
submit
]
{
background-color
:
#4CAF50
;
color
:
white
;
padding
:
12px
20px
;
border
:
none
;
border-radius
:
4px
;
cursor
:
pointer
;
}
input
[
type
=
submit
]
:hover
{
background-color
:
#45a049
;
}
.container
{
border-radius
:
5px
;
background-color
:
#f2f2f2
;
padding
:
20px
;
}
</style>
</head>
<body>
<h3>
Contact Form
</h3>
<div
class=
"container"
>
<form
action=
"/action_page.php"
>
<label
for=
"fname"
>
First Name
</label>
<input
type=
"text"
id=
"fname"
name=
"firstname"
placeholder=
"Your name.."
>
<label
for=
"lname"
>
Last Name
</label>
<input
type=
"text"
id=
"lname"
name=
"lastname"
placeholder=
"Your last name.."
>
<label
for=
"country"
>
Country
</label>
<select
id=
"country"
name=
"country"
>
<option
value=
"australia"
>
Australia
</option>
<option
value=
"canada"
>
Canada
</option>
<option
value=
"usa"
>
USA
</option>
</select>
<label
for=
"subject"
>
Subject
</label>
<textarea
id=
"subject"
name=
"subject"
placeholder=
"Write something.."
style=
"height:200px"
></textarea>
<input
type=
"submit"
value=
"Submit"
>
</form>
</div>
</body>
</html>
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment