-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevent.html
More file actions
78 lines (65 loc) · 2.4 KB
/
event.html
File metadata and controls
78 lines (65 loc) · 2.4 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
<!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>
<header>
<h1>UG School Events</h1>
</header>
<section>
<h2>Upcoming Events</h2>
<div class="event">
<h3>Summer Music Festival</h3>
<p>Date: July 15, 2023</p>
<p>Time: 5:00 PM - 10:00 PM</p>
<p>Location: University of Ghana Music Department</p>
<p>Description: Join us for a night of live music featuring talented artists from our school community. Food and drinks will be available.</p>
</div>
</section>
<footer>
<p>© 2023 UG School Events</p>
</footer>
</body>
</html>