Mazen Web

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 3

<!

DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Web Page Title</title>
<style>
body {
font-family: Arial, sans-serif;
}
.container {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
}
.logo {
float: right; /* Alternative method for right alignment */
}
.title {
text-align: left;
}
.center {
text-align: center;
}
table {
border-collapse: collapse;
width: 100%;
}
th, td {
border: 1px solid #ddd;
padding: 8px;
}
.links {
text-align: center;
margin-top: 20px;
}
.links a {
text-decoration: none;
color: blue;
}
</style>
</head>
<body>
<div class="container">
<img src="https://encrypted-tbn0.gstatic.com/images?
q=tbn:ANd9GcQ8ETsHSCQv8Zh4kYH8jNqBJXlnOmgSv56YpiL2QUPvBQ&s" alt="King Khalid
University Logo" align="right">
<h1>My Design MAZEN</h1>
</div>
<hr>
<h2>Web Design and Development Project 1</h2>
<table>
<tr>
<th>Name</th>
<th>ID</th>
<th>Program</th>
<th>Email</th>
</tr>
<tr>
<td>Student 1</td>
<td>12345</td>
<td>Computer Science</td>
<td>student1@kku.edu.sa</td>
</tr>
<tr>
<td>Student 2</td>
<td>54321</td>
<td>Information Technology</td>
<td>student2@kku.edu.sa</td>
</tr>
<tr>
<td>Student 3</td>
<td>98765</td>
<td>Software Engineering</td>
<td>student3@kku.edu.sa</td>
</tr>
</table>
<div class="links">
<a href="http://www.kku.edu.sa">King Khalid University</a> |
<a href="https://www.google.com.sa">Google</a> |
<a href="https://www.w3schools.com">W3Schools</a>
</div>
</body>
</html>

You might also like