-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
77 lines (67 loc) · 2.46 KB
/
contact.html
File metadata and controls
77 lines (67 loc) · 2.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="OFORI-ATTA KELVIN" />
<meta name="keywords" content="COMPUTER SCIENCE DEPARTMENT + SUGGESTED PAGES" />
<meta
name="description"
content="UG COMPUTER SCIENCE DEPARTMENT"
/>
<!--Linking External CSS-->
<link rel="stylesheet" href="css/style.css" type="text/css" />
<!--Linking font awesome css file-->
<link rel="stylesheet" href="fonts/css/all.css" type="text/css" />
<!----Linking image as website fav-icon---->
<link rel="icon" href="images/Soul logo black.png" />
<!---Linking Media Query CSS-->
<link rel="stylesheet" href="css/media querry.css" type="text/css" />
<title>COMPUTER SCIENCE DEPARTMET| Home</title>
</head>
<body>
<!------Adding div for page header------>
<div class="logo">
<span class="logo-text">UNIVERSITY OF GHANA</span>
</div>
<!---Adding a navigation link & a search bar----->
<nav>
<div class="text">
COMPUTER SCIENCE DEPARTMENT
</div>
<ul class="nav-links">
<li><a href="index.html" id="active">Home</a></li>
<li><a href="resources.html">Resources</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="event.html">Event</a></li>
<li><a href="sports.html">Sports</a></li>
<li><a href="college.html">College</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<div class="burger">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</div>
</nav>
<header>
<div class="contact-content">
<h2>Contact Us</h2>
<p>Feel free to reach out to us for any inquiries or bookings:</p>
<ul>
<li>Email: oforiattakelvin@gmail.com</li>
<li>Phone: 0592422080</li>
<li>Address: Accra-Legon,Ghana</li>
</ul>
<div class="social-icons">
<a href="facebook"><i class="fa-brands fa-facebook-f"></i>
<a href="instagram"><i class="fa-brands fa-instagram"></i>
<a href="twitter"><i class="fa-brands fa-twitter"></i>
</div>
</div>
</header>
<footer>
<p>© 2023 UG Computer Science Department. All rights reserved.</p>
</footer>
</body>
</html>