-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
131 lines (131 loc) · 4.27 KB
/
contact.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html lang="tr">
<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" />
<link
href="https://fonts.googleapis.com/css2?family=Ibarra+Real+Nova&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="stylesheet" href="../public/css/owl.carousel.min.css" />
<link rel="stylesheet" href="../public/css/owl.theme.default.min.css" />
<link rel="stylesheet" href="../public/js/owl.carousel.js" />
<link rel="stylesheet" href="css/main.css" />
<title>Frelancer</title>
</head>
<body>
<!-- header -->
<header id="header__inner">
<div class="container">
<nav class="main-nav">
<img src="img/logo.png" alt="" class="main-nav__logo" />
<ul class="main-nav__items">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="project.html">Project</a></li>
<li><a href="contact.html" class="active">Contact</a></li>
</ul>
</nav>
</div>
</header>
<!-- section a -->
<section id="contact-a" class="text-center py-3">
<div class="container">
<h2 class="section-title"></h2>
<div class="border-bottom"></div>
<p class="lead">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
</p>
<form action="https://formspree.io/f/mlezqoed" method="POST">
<div class="form-fields">
<input
type="text"
class="name input"
name="fullname"
id="fullname"
placeholder="Name, Surname"
/>
<input
type="text"
class="subject input"
name="subject"
id="subject"
placeholder="Title"
/>
<input
type="email"
class="email input"
name="email"
id="email"
placeholder="E Mail"
/>
<input
type="tel"
class="phone input"
name="phone"
id="phone"
placeholder="Phone Number"
/>
<textarea
name="message"
class="message input"
id="message"
placeholder="Enter Message"
></textarea>
<div class="submit">
<button type="submit" class="btn-dark">Submit</button>
</div>
</div>
</form>
</div>
</section>
<!-- section b -->
<section id="contact-b">
<div class="container bg-primary py-2">
<div class="contact-info">
<div>
<i class="fas fa-envelope fa-2x"></i>
<h3>Email</h3>
<p>mail.@mail.com</p>
</div>
<div>
<i class="fas fa-phone fa-2x"></i>
<h3>Phone</h3>
<p>(555) 555 55 55</p>
</div>
<div>
<i class="fas fa-address-card fa-2x"></i>
<h3>Adress</h3>
<p>İstanbul, Türkiye</p>
</div>
</div>
</div>
</section>
<!-- footer -->
<footer id="main-footer">
<div class="footer-content container">
<p>Copright © 2025. All right Reserved.</p>
<div class="social">
<i class="fab fa-facebook"></i>
<i class="fab fa-twitter"></i>
<i class="fab fa-instagram"></i>
<i class="fab fa-youtube"></i>
</div>
</div>
</footer>
<script src="js/jquery.min.js"></script>
<script src="../node_modules/lightbox2/dist/js/lightbox.min.js"></script>
</body>
</html>