-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
126 lines (107 loc) · 2.65 KB
/
index.html
File metadata and controls
126 lines (107 loc) · 2.65 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Cloud Computing Project - Azure Static Web App</title>
<style>
body {
margin: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #0078d7, #00b4ff);
color: #fff;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
background: rgba(0, 0, 0, 0.3);
padding: 40px;
border-radius: 16px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
max-width: 500px;
width: 90%;
text-align: center;
}
h1 {
font-size: 28px;
margin-bottom: 10px;
}
p {
font-size: 16px;
margin-bottom: 25px;
}
ul {
list-style: none;
padding: 0;
text-align: left;
}
li {
background: rgba(255, 255, 255, 0.1);
margin: 8px 0;
padding: 10px 16px;
border-radius: 8px;
transition: background 0.3s ease;
}
li:hover {
background: rgba(255, 255, 255, 0.2);
}
.footer {
margin-top: 20px;
font-size: 14px;
opacity: 0.8;
}
body {
margin: 0;
font-family: Arial, sans-serif;
}
.navbar {
background-color: #007bff;
padding: 15px 20px;
display: flex;
justify-content: flex-start;
align-items: center;
}
.navbar a {
color: white;
text-decoration: none;
margin-right: 20px;
padding: 10px 15px;
border-radius: 5px;
transition: background-color 0.3s;
}
.navbar a:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<div class="navbar">
<a href="index.html">Home</a>
<a href="about.html">About</a>
</div>
<div class="container">
<h1>Cloud Computing Project</h1>
<p>Deploying Static Website to Azure using VS Code Azure Static Web Apps Extension</p>
<h3>Team Members</h3>
<ul id="members-list">
<!-- Members will be inserted by JavaScript -->
</ul>
<div class="footer">Department of Software Engineering, 2025</div>
</div>
<script>
const members = [
{ name: "Abdullah Jamil", reg: "B22F1436SE005" },
{ name: "Malik Khizar Hayat", reg: "B22F0635SE071" },
{ name: "Muhammad Yaseen", reg: "B22F1306SE026" }
];
const list = document.getElementById("members-list");
members.forEach(member => {
const li = document.createElement("li");
li.textContent = `${member.name} (${member.reg})`;
list.appendChild(li);
});
</script>
</body>
</html>