-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAlma Mater
123 lines (121 loc) · 2.5 KB
/
Alma Mater
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
<!DOCTYPE html>
<html>
<style>
*{
margin:0;
padding:0;
}
body {
font-family: Calibri;
color: white;
}
.container{
position:relative;
text-align:center;
color:black;
}
#menu ul {
background: #1F568B;
list-style-type: none;
text-align: center;
margin-top:0;
margin-bottom:0;
}
#menu li {
color: #f1f1f1;
display: inline-block;
width: 120px;
height: 40px;
line-height: 40px;
margin-left: -5px;
}
#menu a {
text-decoration: none;
color: #fff;
display: block;
};
#menu a:hover {
background: #F1F1F1;
color: #333;
}
#menu a:focus {
background-color: yellow;
color: #333;
}
#menu a:active {
background-color: orange;
}
.im{
position:absolute;
top:100%;
}
.theprofile{
position: absolute;
top: 26%;
left: 16%;
background:white;
text-align:center;
border:solid #19ffff;
}
.subtitle{
color:red;
left:50%
}
.right{
background-color:white;
position: absolute;
top: 29%;
right: 15%;
height: 400 px;
text-align:justify;
color:black;
padding-top:20px;
padding-bottom:20px;
padding-left:20px;
padding-right:20px;
border:solid black;
}
.contact_info{
background-color:white;
font-size: 15px;
font-family:Monospace;
position: absolute;
bottom: 5%;
right:13%;
text-align:justify;
color:black;
padding-top:10px;
padding-bottom:10px;
padding-left:10px;
padding-right:10px;
border:solid black;
}
</style>
<body>
<div class ="container">
<div id="menu">
<ul>
<li><a href="file:///home/boris/Desktop/HTML%20Profile/Two">ME</a></li>
<li><a href="file:///home/boris/Desktop/HTML%20Profile/Pop">POP</a></li>
<li><a href="file:///home/boris/Desktop/HTML%20Profile/Mum">MUM</a></li>
<li><a href="file:///home/boris/Desktop/HTML%20Profile/Sis">SIS</a></li>
<li><a href="file:///home/boris/Desktop/HTML%20Profile/Alma Mater">Alma Mater</a></li>
</ul>
</div>
<div class="im">
<img src="file:///home/boris/Downloads/top-cac-truong-dao-tao-nganh-toan-thong-tin-o-viet-nam-3.jpg" width=1280>
<hr><div class ="right">
<h1>Post Telecommunication</h1>
<h1>institute of Technology</h1>
<p>Founding :11/7/1997</p>
<p>Director :Professor Vu Van San</p>
</div>
<div class = "contact_info">
<i>CONTACT INFOS</i>
<p>Address :10th km Tran Phu, Ha Dong district, Hanoi</p>
<p>Phone :+84-(0)4. 3351 2254</p>
</div>
</div>
</div>
</body>
</html>