-
Notifications
You must be signed in to change notification settings - Fork 0
/
78-contactus.html
108 lines (102 loc) · 3.11 KB
/
78-contactus.html
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<html>
<head>
<link href="https://cdn.jsdelivr.net/gh/rastikerdar/[email protected]/Vazirmatn-font-face.css" rel="stylesheet" type="text/css" />
<style>
/* Style the container with a rounded border, grey background and some padding and margin */
*{
box-sizing: border-box;
font-family: vazirmatn;
}
body{
direction: rtl;
}
.container {
border-radius: 5px;
background-color: #f2f2f2;
padding: 20px;
max-width: 600px;
margin: 0 auto;
}
/* Style the input elements and the submit button */
input[type=text], input[type=email], input[type=tel], textarea, button {
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
resize: vertical;
}
/* Style the label to display next to the inputs */
label {
padding: 12px 12px 12px 0;
display: inline-block;
}
/* Style the submit button */
button {
background-color: #04AA6D;
color: white;
cursor: pointer;
}
button:hover {
background-color: #45a049;
}
/* Add a background color and some padding around the form */
.form {
border-radius: 5px;
background-color: #f2f2f2;
padding: 20px;
}
/* Use media queries for responsiveness */
@media (max-width: 600px) {
.col-25, .col-75, input[type=submit] {
width: 100%;
margin-top: 0;
}
}
</style>
</head>
<body>
<div class="container">
<h2>ارتباط با ما</h2>
<p>لطفا فرم زیر را پر کنید و ما در اسرع وقت با شما تماس خواهیم گرفت.</p>
<form action="/action_page.php">
<div class="form">
<div class="row">
<div class="col-25">
<label for="name">نام</label>
</div>
<div class="col-75">
<input type="text" id="name" name="name" placeholder="نام خود را وارد کنید..">
</div>
</div>
<div class="row">
<div class="col-25">
<label for="email">ایمیل</label>
</div>
<div class="col-75">
<input type="email" id="email" name="email" placeholder="ایمیل خود را وارد کنید..">
</div>
</div>
<div class="row">
<div class="col-25">
<label for="phone">تلفن</label>
</div>
<div class="col-75">
<input type="tel" id="phone" name="phone" placeholder="تلفن خود را وارد کنید..">
</div>
</div>
<div class="row">
<div class="col-25">
<label for="message">پیام</label>
</div>
<div class="col-75">
<textarea id="message" name="message" placeholder="پیام خود را بنویسید.." style="height:200px"></textarea>
</div>
</div>
<div class="row">
<button type="submit">ارسال</button>
</div>
</div>
</form>
</div>
</body>
</html>