-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmail.html
executable file
·84 lines (76 loc) · 2.47 KB
/
mail.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
<html>
<head>
<style>
body {
background-color: #ffffff;
font-family: Arial, sans-serif;
text-align: center; /* Align everything to center */
}
h1 {
color: #ffffff;
}
h2 {
font-size: 1.6em;
text-align: center; /* Reset text alignment for headings */
}
h3 {
font-size: 1.3em;
text-align: center; /* Reset text alignment for headings */
}
p {
font-size: 1.1em;
text-align: center; /* Reset text alignment for paragraphs */
}
table {
width: 100%;
font-size: 1.1em;
border-collapse: collapse;
text-align: left; /* Reset text alignment for table cells */
}
th, td {
border: 0px solid #ddd;
padding: 8px;
text-align: left;
}
tr:nth-child(even) {
background-color: #ffffff;
}
.top-bar {
background-color: rgb(17, 17, 184);
color: white;
padding: 0px;
text-align: left;
text-indent: 20px;
font-size: 1.5em;
}
</style>
</head>
<body>
<div class="top-bar">
<h1>SUDuyuru</h1>
</div>
<p>Hello,</p>
<h2>There are <strong>several</strong> new announcements!</h2>
<table>
<tr>
<td><a href="sabanciuniv.edu"><strong>New announcement</strong></a></td>
</tr>
<tr>
<td><a href="sabanciuniv.edu">not new announcement</a></td>
</tr>
<tr>
<td><a href="sabanciuniv.edu"><strong>another New announcement and for some unknown reason the title is veeeeeeeeeeeery long</strong></a></td>
</tr>
<tr>
<td><a href="sabanciuniv.edu">another not new announcement</a></td>
</tr>
</table>
<br><br>
</br>
<p>
<a href="https://mysu.sabanciuniv.edu/announcements/en/all">View all announcements</a>
</br> or edit your preferences <a href="forms.google.com">here</a>.
</p>
<p>Best,<br>SUDuyuru team</p>
</body>
</html>