-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
94 lines (78 loc) · 3.58 KB
/
Copy pathcontact.html
File metadata and controls
94 lines (78 loc) · 3.58 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Me - Photographer</title>
<link rel="stylesheet" href="style5.css">
<script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://unpkg.com/boxicons@latest/css/boxicons.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css" integrity="sha512-Evv84Mr4kqVGRNSgIGL/F/aIDqQb7xQ2vcrdIwxfjThSH8CSR7PBEakCr51Ck+w+/U6swU2Im1vVX0SVk9ABhg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<script src="script5.js" defer></script>
</head>
<body>
<!-- Navigation Bar -->
<header>
<div class="availability">📞 call me
<br>
<span>+94 123456789</span>
</div>
<div class="menu-icon" onclick="toggleMenu()">☰</div>
<nav id="nav-menu">
<div class="close-icon" onclick="toggleMenu()">✖</div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="service.html">Services</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<!-- Side Navigation Menu -->
<nav id="side-menu">
<div class="close-btn" onclick="toggleMenu()">✖</div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="service.html">Services</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<!-- Contact Section -->
<section class="contact" id="contact">
<div class="contact-container">
<h1>Contact me!</h1>
<p>I'm looking for new experience with you</p>
<div class="contact-boxes">
<div class="contact-box">
<i class="fas fa-phone"></i>
<span>call me</span>
<p>+94 123456789</p>
</div>
<div class="contact-box">
<i class="fas fa-envelope"></i>
<span>@ messaging me</span>
<p>ishan@ppsgraphy.com</p>
</div>
</div>
<div class="social-icons">
<a href="https://www.facebook.com/profile.php?id=100069948215003"> <span><i class="fa-brands fa-square-facebook"></i></span></a>
<a href="https://x.com/wenuri_sanjana"> <span><i class="fa-brands fa-square-twitter"></i></span></a>
<a href="https://www.instagram.com/wenuri_sanjana/?hl=en"> <span><i class="fa-brands fa-square-instagram"></i></span></a>
</div>
<div class="contact-form">
<p>Complete form by writing your email</p>
<form>
<input type="email" placeholder="Your email" required>
<button type="submit">→</button>
</form>
<br>
<br>
<textarea placeholder="Your message"></textarea>
</div>
</div>
</section>
</body>
</html>