-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.html
More file actions
37 lines (34 loc) · 918 Bytes
/
header.html
File metadata and controls
37 lines (34 loc) · 918 Bytes
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
<hr>
<div id="header-images-container">
<!-- <img id="itmo-logo-image" src="/images/itmo.png" alt="itmo-image">-->
<!-- <img id="vt-logo-image" src="/images/vt.png" alt="vt-image">-->
<img id="itmo-logo-image" src="/physics/images/itmo.png" alt="itmo-image">
<img id="vt-logo-image" src="/physics/images/vt.png" alt="vt-image">
</div>
<hr>
<div id="creds-container">
<span id="span-name">Alexey Gotovko</span>
<span id="span-group">P32101</span>
</div>
<style>
#header-images-container {
text-align: center;
position: relative;
}
#itmo-logo-image {
width: 208px;
height: 82px;
margin-bottom: 25px;
}
#vt-logo-image {
width: 100px;
padding: 10px;
}
#creds-container {
vertical-align: center;
text-align: right;
}
#span-name, #span-group {
display: block;
}
</style>