-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebiste
More file actions
146 lines (143 loc) · 3.48 KB
/
webiste
File metadata and controls
146 lines (143 loc) · 3.48 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>ASU ASCEND Software</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: #f4f4f4;
color: #333;
line-height: 1.6;
}
.container {
width: 90%;
max-width: 1000px;
margin: 20px auto;
background: #fff;
padding: 20px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
header {
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 2px solid #ddd;
padding-bottom: 10px;
margin-bottom: 20px;
}
header img {
height: 60px;
width: auto;
}
header h1 {
flex-grow: 1;
text-align: center;
font-size: 2em;
color: #0073e6;
}
p {
margin-bottom: 20px;
text-align: center;
}
p a {
color: #0073e6;
text-decoration: none;
}
table {
width: 100%;
border-collapse: collapse;
margin-bottom: 20px;
}
th, td {
padding: 12px;
border: 1px solid #ddd;
text-align: center;
}
th {
background: #0073e6;
color: #fff;
}
tr:nth-child(even) {
background: #f9f9f9;
}
tr:hover {
background: #f1f1f1;
}
.semester {
text-align: left;
font-weight: bold;
}
footer {
text-align: center;
padding: 10px;
font-size: 0.9em;
color: #777;
border-top: 1px solid #ddd;
margin-top: 20px;
}
/* Responsive adjustments */
@media (max-width: 600px) {
header {
flex-direction: column;
}
header h1 {
margin: 10px 0;
}
th, td {
padding: 8px;
}
}
</style>
</head>
<body>
<div class="container">
<header>
<img src="azsgcbanner_lg.png" alt="Project Logo">
<h1>ASU ASCEND Software</h1>
<img src="ASU-logo.png" alt="University Logo">
</header>
<p>ASU ASCEND website: <a href="https://asuascend.weebly.com/" target="_blank">https://asuascend.weebly.com/</a></p>
<table>
<thead>
<tr>
<th>Semester</th>
<th>GitHub Repository</th>
<th>Documentation</th>
</tr>
</thead>
<tbody>
<tr>
<td class="semester">2025 Spring</td>
<td><a href="https://github.com/ASU-ASCEND/Spring-2025" target="_blank">GitHub</a></td>
<td><a href="https://asu-ascend.github.io/Spring-2025/" target="_blank">Documentation</a></td>
</tr>
<tr>
<td class="semester">2024 Fall</td>
<td><a href="https://github.com/ASU-ASCEND/Fall-2024" target="_blank">GitHub</a></td>
<td><a href="https://asu-ascend.github.io/Fall-2024/" target="_blank">Documentation</a></td>
</tr>
<tr>
<td class="semester">2024 Spring</td>
<td><a href="https://github.com/ASU-ASCEND/AcademicYear-2023-24" target="_blank">GitHub</a></td>
<td></td>
</tr>
<tr>
<td class="semester">2023 Fall</td>
<td><a href="https://github.com/ASU-ASCEND/AcademicYear-2023-24/tree/main/Fall2023" target="_blank">GitHub</a></td>
<td></td>
</tr>
</tbody>
</table>
<footer>
<p>© 2025 ASU ASCEND. All rights reserved.</p>
</footer>
</div>
</body>
</html>