Skip to content
This repository was archived by the owner on Apr 18, 2025. It is now read-only.

Commit e71e0c2

Browse files
added contact.html and contact.css
1 parent 3fa97e4 commit e71e0c2

File tree

5 files changed

+599
-3
lines changed

5 files changed

+599
-3
lines changed

MultiPage-Clone/contact.html

Lines changed: 118 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,118 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
7+
<link
8+
rel="stylesheet"
9+
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
10+
/>
11+
<link rel="stylesheet" href="css/contact.css" />
12+
<!-- Add a link to your custom CSS here -->
13+
<link rel="preconnect" href="https://fonts.googleapis.com" />
14+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
15+
<link
16+
href="https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap"
17+
rel="stylesheet"
18+
/>
19+
<link rel="preconnect" href="https://fonts.googleapis.com" />
20+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
21+
<link
22+
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
23+
rel="stylesheet"
24+
/>
25+
<title>Responsive grid project</title>
26+
</head>
27+
28+
<body>
29+
<nav>
30+
<div class="logo">
31+
<div class="logo1">
32+
<img
33+
src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQNgjV6Hxw34EU6zli1YKdNKY45CCCzDtqjKkUsX-uIh3nYTEMMFSL_CMb0Y00h16Hs0uo&usqp=CAU"
34+
/>
35+
<span>Maya Nelson</span>
36+
<span>/</span>
37+
</div>
38+
<p>PROJECT MANAGER</p>
39+
</div>
40+
<ul class="nav-links">
41+
<li><a href="index.html" class="active">about me</a></li>
42+
<li><a href="resume.html">resume</a></li>
43+
<li><a href="project.html">project</a></li>
44+
<li><a href="contact.html">contact</a></li>
45+
</ul>
46+
<div class="navimage">
47+
<div class="line1"></div>
48+
<div class="line2"></div>
49+
<div class="line3"></div>
50+
</div>
51+
</nav>
52+
<main>
53+
<div class="contact-text">
54+
<p class="box"></p>
55+
<span>Let's talk</span>
56+
</div>
57+
<div class="card">
58+
<form action="#" class="form-container">
59+
<div class="name-container">
60+
<div class="input-group">
61+
<label for="first_name">First Name *</label>
62+
<input type="text" id="first_name" name="first_name" required>
63+
</div>
64+
<div class="input-group">
65+
<label for="last_name">Last Name *</label>
66+
<input type="text" id="last_name" name="last_name" required>
67+
</div>
68+
</div>
69+
<div class="input-group">
70+
<label for="email">Email *</label>
71+
<input type="email" id="email" name="email" required>
72+
</div>
73+
74+
<div class="input-group">
75+
<label for="subject">Subject</label>
76+
<input type="text" id="subject" name="subject" required>
77+
</div>
78+
79+
<div class="input-group">
80+
<label for="message">Message</label>
81+
<textarea id="message" name="message" rows="5" required></textarea>
82+
</div>
83+
84+
<button type="submit">Send</button>
85+
</form>
86+
</div>
87+
</main>
88+
<footer>
89+
<div class="fot-left">
90+
<span>© 2035 by Maya Nelson.</span>
91+
<span>Powered and secured by <u>Wix</u></span>
92+
</div>
93+
<div class="fot-right">
94+
<div class="one">
95+
<p>Call</p>
96+
<span>123-456-7890</span>
97+
</div>
98+
<div class="one">
99+
<p>Write</p>
100+
<span>info@mysite.com</span>
101+
</div>
102+
<div class="one">
103+
<p>Follow</p>
104+
<div class="social-icons">
105+
<a href="https://www.facebook.com" target="_blank" class="social-link"><i
106+
class="fab fa-facebook-f"></i></a>
107+
<a href="https://www.twitter.com" target="_blank" class="social-link"><i class="fab fa-twitter"></i></a>
108+
<a href="https://www.linkedin.com" target="_blank" class="social-link"><i
109+
class="fab fa-linkedin-in"></i></a>
110+
<a href="https://www.instagram.com" target="_blank" class="social-link"><i
111+
class="fab fa-instagram"></i></a>
112+
</div>
113+
</div>
114+
</div>
115+
</footer>
116+
<script src="main.js"></script>
117+
</body>
118+
</html>

0 commit comments

Comments
 (0)