-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
88 lines (78 loc) · 4.48 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
<!doctype html>
<html class="h-100" lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
<meta name="description" content="A well made and handcrafted Bootstrap 5 template">
<link rel="apple-touch-icon" sizes="180x180" href="img/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="img/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="96x96" href="img/favicon.png">
<meta name="author" content="Abdulrahman Daud Miraj">
<meta name="generator" content="Eleventy v2.0.0">
<meta name="HandheldFriendly" content="true">
<title> Contact Me </title>
<link rel="stylesheet" href="css/theme.min.css">
</head>
<body class="d-flex h-100 w-100 bg-black text-white" data-bs-spy="scroll" data-bs-target="#navScroll">
<div class="h-100 container-fluid">
<div class="h-100 row d-flex align-items-stretch">
<div class="col-12 col-md-7 col-lg-6 col-xl-5 d-flex align-items-start flex-column px-vw-5">
<header class="mb-auto py-vh-2 col-12">
<a class="navbar-brand pe-md-4 fs-4 col-12 col-md-auto text-center" href="index.html">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor" class="bi bi-stack"
viewBox="0 0 16 16">
<path
d="m14.12 10.163 1.715.858c.22.11.22.424 0 .534L8.267 15.34a.598.598 0 0 1-.534 0L.165 11.555a.299.299 0 0 1 0-.534l1.716-.858 5.317 2.659c.505.252 1.1.252 1.604 0l5.317-2.66zM7.733.063a.598.598 0 0 1 .534 0l7.568 3.784a.3.3 0 0 1 0 .535L8.267 8.165a.598.598 0 0 1-.534 0L.165 4.382a.299.299 0 0 1 0-.535L7.733.063z" />
<path
d="m14.12 6.576 1.715.858c.22.11.22.424 0 .534l-7.568 3.784a.598.598 0 0 1-.534 0L.165 7.968a.299.299 0 0 1 0-.534l1.716-.858 5.317 2.659c.505.252 1.1.252 1.604 0l5.317-2.659z" />
</svg>
<span class="ms-md-1 mt-1 fw-bolder me-md-5">Miraj</span>
</a>
</header>
<main class="mb-auto col-12">
<div>
<h1> Let's Talk About Code</h1>
<p>I can assist you with developing a product, feature, or website. Examine some of my work and experience!
If you enjoy what you see and have a project that needs to be developed, please do not hesitate to contact
me.</p>
</div>
<form class="row">
<div class="col-12">
<div class="mb-3">
<label for="name" class="form-label">Your Full Name</label>
<input type="name" class="form-control form-control-lg bg-gray-800 border-dark"
id="exampleInputFullName" required>
</div>
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label">Email address</label>
<input type="email" class="form-control form-control-lg bg-gray-800 border-dark" id="exampleInputEmail1"
aria-describedby="emailHelp" required>
<div id="emailHelp" class="form-text">I'll never share your email with anyone else.</div>
</div>
<div class="mb-3">
<label for="exampleInputSubject" class="form-label">Subject</label>
<input type="subject" class="form-control form-control-lg bg-gray-800 border-dark" id="subject" required>
</div>
<div class="mb-3">
<label for="message" class="form-label">Meassage</label>
<textarea type="text" class="form-control form-control-lg bg-gray-800 border-dark"
id="exampleInputMessage" required></textarea>
</div>
<div class="mb-3 form-check py-3">
<input type="checkbox" class="form-check-input" id="exampleCheck1" required>
<label class="form-check-label" for="exampleCheck1">If you really don't want any newsletter
<strong>check this box</strong>. Then you won't receive any marketing mails or product stuff.
If you check this box <strong>I will not send out my articles</strong> to you at all...on
Mondays.</label>
</div>
<button type="submit" class="btn btn-white btn-xl mb-4">Submit</button>
</div>
</form>
</main>
</div>
<div class="col-12 col-md-5 col-lg-6 col-xl-7 gradient"></div>
</div>
</div>
</body>
</html>