This repository was archived by the owner on Jan 14, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 317
Expand file tree
/
Copy pathcontact.html
More file actions
124 lines (99 loc) · 4.17 KB
/
contact.html
File metadata and controls
124 lines (99 loc) · 4.17 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
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
<!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="../css/main.css" />
<link rel="stylesheet" href="../css/forms.css">
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7./css/font-awesome.min.css" />
<script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>
<title>Responsive grid project</title>
</head>
<body>
<header class="header">
<nav class="navBar">
<div class="head-logo">
<div class="head-square"></div>
<div class="logo-title">
<h1> Maya Nelson </h1> <span id="slash-head">/</span>
<p id="title">project Management</p>
</div>
</div>
<div class="header-menu">
<button class="hamburger">
<div class="bar"></div>
</button>
<div class="header-links hide-for-mobile">
<a class="active" href="index.html">ABOUT ME</a>
<a href="resume.html">RESUME</a>
<a href="projects.html">PROJECTS</a>
<a href="contact.html">CONTACT</a>
</div>
</div>
</nav>
<nav class="mobile-nav">
<a class="active" href="index.html">ABOUT ME</a>
<a href="resume.html">RESUME</a>
<a href="projects.html">PROJECTS</a>
<a href="contact.html">CONTACT</a>
</nav>
</header>
<!-- Add your markup here -->
<main class="form-container">
<div>
<h1 class="head-form"><i class="fa fa-square " id="square"></i>Let's talk</h1>
</div>
<div>
<form action="submit" method="post" class="form">
<div>
<div class="fname-lname">
<label for="fname">First Name *
<input type="text" class="form-input" id="fname" name="fname" required></label>
<label for="lname">Last Name *
<input type="text" class="form-input" id="lname" name="lname" required></label >
</div>
<label for="email">Email *
<input type="email" class="form-input" id="email" name="email" required>
</label>
<label for="subject">subject *
<input type="text" class="form-input" id="subject" name="subject">
</label>
<textarea class="form-input" > Message</textarea>
<div class="BTN"><button type="submit" class="sub-btn">Send</button></div>
</div>
</form>
</div>
</main>
<footer class="footer-container">
<div class="contact-details">
<div class="phone">
<p class="caption">Call</p>
<p>012-336-545</p>
</div>
<div class="email">
<p class="caption">Write</p>
<a href="email">info@mysite.com</a>
</div>
<div class="social">
<p class="caption">Follow</p>
<div class="social-menu">
<a href="#" class="fa fa-facebook"></a>
<a href="#" class="fa fa-twitter"></a>
<a href="#" class="fa fa-linkedin"></a>
<a href="#" class="fa fa-github"></a>
</div>
</div>
</div>
<p class="rights">©2023 by Haroun</p>
</footer>
<p>
This website design was created by Wix.com, and is used here for
strictly educational purposes.
</p>
</div>
</body>
</html>