-
Notifications
You must be signed in to change notification settings - Fork 0
/
Contact.html
167 lines (129 loc) · 5.39 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio</title>
<link rel="stylesheet" href="Styles/navigation.css">
<link rel="stylesheet" href="Styles/middle.css">
<link rel="stylesheet" href="Styles/common.css">
<link rel="stylesheet" href="Styles/footer.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v6.4.2/css/all.css">
<link href="https://fonts.googleapis.com/css2?family=Patrick+Hand&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Licorice&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Grape+Nuts&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Handlee&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz@6..12&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div class="left">
<a href="About.html">Amouchi Thamazgha</a>
</div>
<button class="nav-toggle" aria-label="toggle navigation">
<spanc class="hamburger"></span>
</button>
<nav class="nav">
<ul class="nav__list">
<li class="nav__item"><a href="index.html" class="nav__link">Home</a></li>
<li class="nav__item"><a href="works.html" class="nav__link">My works</a></li>
<li class="nav__item"><a href="About.html" class="nav__link">About me</a></li>
<li class="nav__item"><a href="Contact.html" class="nav__link">Contact me</a></li>
</ul>
</nav>
</header>
<section class="contact-section">
<div class="contact-container">
<form onsubmit="sendEmail(); reset; return false">
<div class="headline">
<h4>GET IN TOUCH</h4>
</div>
<input type="text" id="name" placeholder="Your name" required>
<input type="email" id="email" placeholder="Email" required>
<textarea id="message" rows="4" placeholder="Message"></textarea>
<button type="submit" class="btn">Send</button>
</form>
</div>
<div class="contact-container-2">
<div class="alternative">
<h4>You can also find me on:</h4>
</div>
<div class="social-icon">
<a href="https://www.instagram.com/_katcreations_/" target="_blank">
<h3>Instagram</h3>
</a>
</div>
<div class="social-icon">
<a href="https://github.com/Serpens10" target="_blank">
<h3>GitHub</h3>
</a>
</div>
<div class="social-icon">
<a href="https://www.linkedin.com/in/thamazgha-amouchi-3446ba239/" target="_blank">
<h3>LinkedIn</h3>
</a>
</div>
<div class="social-icon">
<h3>Or you can e-mail me directly <a href="mailto: aamouchi.t@gmail.com">HERE</a></h3>
</div>
</div>
</div>
</section>
<div class="footer">
<div class="navigation-links">
<div class="navigation">
<a href="index.html"><h3>Home</h3></a>
</div>
<div class="navigation">
<a href="works.html"><h3>Works</h3></a>
</div>
<div class="navigation">
<a href="About.html"><h3>About</h3></a>
</div>
<div class="navigation">
<a href="Contact.html"><h3>Contact</h3></a>
</div>
</div>
<div class="social-links">
<div class="social-icon">
<a href="https://www.instagram.com/k.welshe/" target="_blank">
<i class="fa-brands fa-square-instagram"></i>
</a>
</div>
<div class="social-icon">
<a href="https://www.linkedin.com/in/thamazgha-amouchi-3446ba239/" target="_blank">
<i class="fa-brands fa-linkedin"></i>
</a>
</div>
<div class="social-icon">
<a href="https://github.com/Serpens10" target="_blank">
<i class="fa-brands fa-square-github"></i>
</a>
</div>
<div class="social-icon">
<i class="fa-solid fa-share-from-square"></i>
</div>
</div>
<div class="copyright">
<p> © 2023 Amouchi Thamazgha | All Rights Reserved </p>
</div>
</div>
<script src="Styles/index.js"></script>
<script src="https://smtpjs.com/v3/smtp.js"></script>
<script>
function sendEmail(){
Email.send({
Host : "smtp.gmail.com",
Username : "aamouchi.t@gmail.com",
Password : "",
To : 'aamouchi.t@gmail.com',
From : document.getElementById("email").value,
Subject : "Portfolio contact inquiry",
Body : "And this is the body"
}).then(
message => alert(message)
);
}
</script>
</body>
</html>