-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
65 lines (65 loc) · 1.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Contact</title>
<link rel="stylesheet" href="stylesC.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
/>
</head>
<body>
<header class="container">
<h1>Contact Us</h1>
</header>
<section id="social-media" class="container">
<ul class="social-links">
<li>
<a href="index.html" target="_blank"
><i class="fas fa-home"></i> Home</a
>
</li>
<li>
<a href="mailto:[email protected]" target="_blank" id="emailLink"
><i class="fas fa-envelope"></i> Email</a
>
</li>
<li>
<a href="https://www.yahoo.com" target="_blank" id="yahooLink"
><i class="fab fa-yahoo"></i> Yahoo</a
>
</li>
<li>
<a
href="https://x.com/@SalehAlkarabubi"
target="_blank"
id="twitterLink"
><i class="fab fa-twitter"></i> X (Twitter)</a
>
</li>
<li>
<a
href="https://www.facebook.com/saleh.alkarabubi"
target="_blank"
id="facebookLink"
><i class="fab fa-facebook"></i> Facebook</a
>
</li>
<li>
<a
href="https://www.youtube.com/results?search_query=Alkarabubi+"
target="_blank"
id="youtubeLink"
><i class="fab fa-youtube"></i> YouTube</a
>
</li>
</ul>
</section>
<footer class="container">
<p>Saleh Omer Ali Alkarabubi</p>
</footer>
<script src="scriptC.js"></script>
</body>
</html>