-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
156 lines (148 loc) · 4.75 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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="contactstyle.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Raleway"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="favicon.png"
/>
<meta name="theme-color" content="#b6dfe7" />
<link rel="stylesheet" href="https://unpkg.com/normalize.css" />
<script src="https://unpkg.com/feather-icons"></script>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<title>Aks Art</title>
</head>
<body>
<div class="nav-top">
<ul class="one">
<li style="float: left;">
<a href="/index.html"><strong>AKS ART</strong></a>
</li>
<li style="float: right;">
<a href="/contact.html"
><i class="fa fa-fw fa-envelope"></i> Contact
</a>
</li>
<li style="float: right;">
<a href="/gallery.html"
><i class="fa fa-fw fa-image"></i> Gallery
</a>
</li>
<li style="float: right;">
<a href="/about.html"><i class="fa fa-fw fa-user"></i> About </a>
</li>
<li style="float: right;">
<a href="/index.html"><i class="fa fa-fw fa-home"></i> Home </a>
</li>
</ul>
</div>
<button class="button" id="myBtn">
<div class="top">
DIWALI OFFER
</div>
</button>
<div id="myModal" class="modal">
<div class="modal-content">
<span class="close">x</span>
<div>
<br /><br /><br /><br /><br /><br />
<h2 style="text-align: center;">Aks Art</h2>
<h3 style="text-align: center;">
DIWALI OFFER
</h3>
</div>
<h2 style="text-align: center;">
Get 10% off on all products!
</h2>
<h4 style="text-align: center;">
Don't miss out on this flash sale.
<br />
<br />
ORDER NOW
</h4>
</div>
</div>
<main>
<section id="contact" class="wall">
<div class="contact-heading">
<h2>Contact Us</h2>
<h4>We would love to hear from you!</h4>
</div>
<div class="contact-content">
<div class="contact-img">
<img height="300px" src="assets/aks-bg.PNG" />
<h3>Akshaya Kani</h3>
<h5>Creative Artist</h5>
<p><i class="fa fa-fw fa-edit"></i> +91 6374845895 </p>
<a href="mailto:akshayakani15@gmail.com"> <i class="fa fa-fw fa-envelope"></i> akshayakani15@gmail.com</a>
<br />
</div>
<div class="contact-form">
<h3>Send us a message</h3>
<form class="contact-form1">
<label for="fname">Name :</label>
<input type="text" placeholder="Name">
<br/>
<label for="fname">E-mail :</label>
<input type="email" placeholder="E-mail">
<br />
<label for="fname">Subject :</label>
<input type="text" placeholder="Subject">
<br />
<label for="fname">Content :</label>
<textarea rows="4" cols="50" placeholder="Drop in a comment, query or commission request."></textarea>
<br/>
<button class="btn"> Submit</button>
</form>
</div>
</div>
</section>
</main>
<footer>
<div class="footer" id="contact">
<h3>
Akshaya Kani
</h3>
<span><i class="fa fa-fw fa-edit"></i> +91 6374845895 </span>
<br />
<a href="mailto:akshayakani15@gmail.com"> <i class="fa fa-fw fa-envelope"></i> akshayakani15@gmail.com</a
>
<br />
<hr />
<span> Thanks for your time. <i class="fa fa-fw fa-heart"></i> </span>
<br/>
</div>
</footer>
<script>
feather.replace();
</script>
<script>
var modal = document.getElementById("myModal");
var btn = document.getElementById("myBtn");
var span = document.getElementsByClassName("close")[0];
btn.onclick = function () {
modal.style.display = "block";
};
span.onclick = function () {
modal.style.display = "none";
};
window.onclick = function (event) {
if (event.target == modal) {
modal.style.display = "none";
}
};
</script>
</body>
</html>