-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontactme.html
96 lines (89 loc) · 4.8 KB
/
contactme.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
<!doctype html>
<html lang="en">
<head>
<title>Contact Me| Mohammad Shayan</title>
<link rel="icon" type="image/x-icon" href="./img/Shayan.webp">
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS v5.2.1 -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT" crossorigin="anonymous">
<!-- FontAwesome 6.2.0 CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css"
integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="./css/style.css">
</head>
<body class="bg-dark text-light">
<header>
<nav class="navbar navbar-dark bg-dark bg-opacity-50 px-3 sticky-top text-light">
<a class="navbar-brand" href="./index.html"><i class="fa fa-user" aria-hidden="true"></i> Portfolio</a>
<ul class="nav">
<li class="nav-item">
<a class="nav-link" href="./index.html"> Back to Home</a>
</li>
</nav>
</header>
<main>
<section class="mainbannercontact py-5">
<h1 class="text-center">Contact Me</h1>
</section>
<section class="contact_form">
<div class="row">
<div class="col-lg-4 text-dark bg-light text-center rounded-4 my-5 p-4 ">
<h3>You can find us at</h3>
<p class="pt-5">Email: <br><a href="mailto:officialm.shayan@gmail.com" class="nav-link"><u>
o********.s*****@gmail.com</u></a> <br></p> <h4><a href="https://www.facebook.com/profile.php?id=100004875826564"><i
class="fa-brands fa-facebook text-dark"></i></a> <a href="https://www.instagram.com/mohd_shayan_official"><i
class="fa-brands fa-instagram text-dark" aria-hidden="true"></i></a> <a
href="https://www.linkedin.com/in/mohammad-shayan786"><i class="fa-brands fa-linkedin text-dark"></i></a></h4>
</div>
<!-- <div class="col-lg-1"></div> -->
<div class="col-lg-8 rounded-4 contactbgimg my-5">
<form class="p-4">
<div class="mb-3">
<input type="text" id="basic-addon1" placeholder="Name"
class="form-control border-bottom border-light my-4">
<div class="mb-3">
<input type="email" class="form-control border-bottom border-light my-4"
placeholder="Email Address" id="exampleInputEmail1"
aria-describedby="emailHelp">
</div>
<div class="mb-3">
<input type="text" id="basic-addon1"
class="form-control border-bottom border-light" style="height: 5pc;"
placeholder="Message">
</div>
</div>
<div class="text-center">
<button type="submit" class="btn btn-light w-75 hoversign"
id="signbtn">Submit</button>
</div>
</form>
</div>
</div></section>
</main>
<footer class="py-3 ">
<div class="container">
<hr><p class="fw-bolder text-center">
All rights reserved Mohammad Shayan 2023-2024
</p>
<hr>
</div>
</footer>
<!-- Bootstrap JavaScript Libraries -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js"
integrity="sha384-oBqDVmMz9ATKxIep9tiCxS/Z9fNfEXiDAYTujMAeBAsjFuCZSmKbSSUnQlmh/jp3" crossorigin="anonymous">
</script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/js/bootstrap.min.js"
integrity="sha384-7VPbUDkoPSGFnVtYi0QogXtr74QeVeeIs99Qfg5YCF+TidwNdjvaKZX19NZ/e6oz" crossorigin="anonymous">
</script>
<script src="./javascript/app.js"></script>
<!-- (Optional) Use CSS or JS implementation -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/js/all.min.js"
integrity="sha512-naukR7I+Nk6gp7p5TMA4ycgfxaZBJ7MO5iC3Fp6ySQyKFHOGfpkSZkYVWV5R7u7cfAicxanwYQ5D1e17EfJcMA=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
</body>
</body>
</html>