-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
130 lines (113 loc) · 4.15 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
<!DOCTYPE html>
<html lang="zxx">
<head>
<meta charset="utf-8">
<title>Portfolio Template</title>
<!-- mobile responsive meta -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- ** Plugins Needed for the Project ** -->
<!-- Bootstrap -->
<link rel="stylesheet" href="plugins/bootstrap/bootstrap.min.css">
<!-- slick slider -->
<link rel="stylesheet" href="plugins/slick/slick.css">
<!-- themefy-icon -->
<link rel="stylesheet" href="plugins/themify-icons/themify-icons.css">
<!-- Main Stylesheet -->
<link href="css/style.css" rel="stylesheet">
<!--Favicon-->
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
<link rel="icon" href="images/favicon.ico" type="image/x-icon">
</head>
<body>
<header class="navigation fixed-top">
<nav class="navbar navbar-expand-lg navbar-dark">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navigation"
aria-controls="navigation" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse text-center" id="navigation">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="projects.html">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="interests.html">Interests</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
</div>
</nav>
</header>
<!-- hero area -->
<section class="hero-area bg-primary" id="parallax">
<div class="container">
<div class="row">
<div class="col-lg-11 mx-auto text-center">
<h2 class="text-white font-tertiary">Contact</h2>
</div>
</div>
</div>
<div class="layer-bg w-100">
<img class="img-fluid w-100" src="images/illustrations/leaf-bg.png" alt="bg-shape">
</div>
</section>
<!-- /hero area -->
<!-- contact -->
<section class="section section-on-footer" data-background="images/backgrounds/bg-dots.png">
<div class="container">
<div class="row">
<div class="col-12 text-center">
<h2 class="section-title">Contact Info</h2>
</div>
<div class="col-lg-8 mx-auto">
<div class="bg-white rounded text-center p-5 shadow-down">
<h4 class="mb-80">Contact Form</h4>
<form action="#" class="row">
<div class="col-md-6">
<input type="text" id="name" name="name" placeholder="Full Name" class="form-control px-0 mb-4">
</div>
<div class="col-md-6">
<input type="email" id="email" name="email" placeholder="Email Address" class="form-control px-0 mb-4">
</div>
<div class="col-12">
<textarea name="message" id="message" class="form-control px-0 mb-4"
placeholder="Type Message Here"></textarea>
</div>
<div class="col-lg-6 col-10 mx-auto">
<button class="btn btn-primary w-100">send</button>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- /contact -->
<!-- footer -->
<footer class="bg-dark footer-section">
<div class="border-top text-center border-dark py-5">
<p class="mb-0 text-light">Copyright ©<script>
var CurrentYear = new Date().getFullYear()
document.write(CurrentYear)
</script> Designed & Developed by <a class="text-white-50" href="https://www.linkedin.com/in/amina-anna-mahamane-ousmane-385267221/">amin-nna</a></p>
</div>
</footer>
<!-- /footer -->
<!-- jQuery -->
<script src="plugins/jQuery/jquery.min.js"></script>
<!-- Bootstrap JS -->
<script src="plugins/bootstrap/bootstrap.min.js"></script>
<!-- slick slider -->
<script src="plugins/slick/slick.min.js"></script>
<!-- filter -->
<script src="plugins/shuffle/shuffle.min.js"></script>
<!-- Main Script -->
<script src="js/script.js"></script>
</body>
</html>