-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvisit.html
More file actions
60 lines (58 loc) · 1.66 KB
/
visit.html
File metadata and controls
60 lines (58 loc) · 1.66 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
<!DOCTYPE html>
<html>
<head>
<title>Visiting Card</title>
<link rel="stylesheet" href="style.css">
<link href="img/favicon.png" rel="icon">
</head>
<body>
<div id="container">
<h2>Visiting Card Details</h2>
<div class="block"></div>
<form netlify>
<h5>Name of Company</h5>
<input type="text" name="Name">
<h5>Type Of Company</h5>
<input type="text" name="Name">
<h5>Name Of Propriter/Owner</h5>
<input type="text" name="Name">
<h5>Address of Company</h5>
<input type="text" name="Name">
<h5>Contact Number</h5>
<input type="text" name="Name">
<h5>Other Things to add</h5>
<textarea>
</textarea><br>
<input type="submit" name="Submit" value="Send">
</form>
</div>
<footer>
<div id="container">
<div class="social">
<a href="mailto:verma0007.dev@gmail.com"><img src="img/mail.png"></a>
<a href=""><img src="img/fb.png"></a>
<a href=""><img src="img/blog.png"></a>
<a href=""><img src="img/insta.png"></a></div>
<p class="copyright">© Copyright <strong>Ratan Computers</strong>. All Rights Reserved</p>
<div class="credits">
With Love Designed by <a href="https://dev-bhai-bltr.netlify.app/">Devansh</a>
</div>
</div>
</footer>
<div id="preloader"></div>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js'></script>
<script type="text/javascript">
(function ($) {
'use strict';
// Preloader
$(window).on('load', function () {
$('#preloader')
.delay(1000)
.fadeOut('slow', function () {
$(this).remove();
});
});
})(window.jQuery);
</script>
</body>
</html>