-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuniversity.html
100 lines (90 loc) · 3.67 KB
/
university.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>University</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="university-header">
<h1 class="page-title">University</h1>
</header>
<div class="uni-img-container">
<div class="image-container1">
<img src="./img/New-logo.png" alt="USAL logo" class="logo-image" width="400px" height="200px">
</div>
<div class="image-container1">
<img src="./img/usal-campus.jpg" alt="USAL campus" class="campus-image" width="" height="250px">
</div>
</div>
<main>
<div class="content-container">
<p>
I am currently studying Computer Science at the University of San Andrés (USAL). The program offers a
solid
foundation in programming, algorithms, and software development, preparing me for a wide range of
careers in
technology. The university's focus on innovation and practical skills has been invaluable, allowing me
to work
on projects that challenge my problem-solving abilities and expand my technical knowledge. I'm excited
to
continue learning and growing in this dynamic field, taking full advantage of the opportunities and
resources
USAL provides.
</p>
<h3>Courses I registered this semester:</h3>
<table class="courses-table">
<thead>
<tr>
<th>Course Name</th>
<th>Professor</th>
<th>Time</th>
</tr>
</thead>
<tbody>
<tr>
<td>Advanced Database</td>
<td>Dr Hussein Dhayne</td>
<td>Monday 9:00 AM</td>
</tr>
<tr>
<td>Advanced Data Structure</td>
<td>Dr. Yasser Fadlallah</td>
<td>Wednesday 10:00 AM</td>
</tr>
<tr>
<td>Numerical Computation</td>
<td>Dr Ayman El Zein</td>
<td>Thursday 2:00 PM</td>
</tr>
<tr>
<td>Computer Security</td>
<td>Dr. Abbass Madi</td>
<td>Friday 2:30 PM</td>
</tr>
<tr>
<td>Principle of First Aid</td>
<td>Dr. Hussein AlaaEddine</td>
<td>Friday 4:00 PM</td>
</tr>
</tbody>
</table>
<div class="button-container">
<a href="./schedule.html">
<button class="back-button">Back to Schedule</button>
</a>
</div>
</div>
</main>
<footer>
<p>Created by Mohamad Al Ayoubi</p>
<p>For more information, contact us via:</p>
<ul type="none">
<li>Phone: <a href="tel:+96170893180">+961 (70) 893 180</a></li>
<li>Email: <a href="mailto:[email protected]">[email protected]</a></li>
<li>Visit my <a href="https://www.linkedin.com/in/mohamad-al-ayoubi-87271224b/">LinkedIn</a> page.</li>
</ul>
</footer>
</body>
</html>