-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
103 lines (96 loc) · 2.98 KB
/
index.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<html>
<head>
<title>Malek Tubaishat</title>
<style>
.profile
{
border-radius: 50%;
width: 150px;
height: 150px;
display: block;
margin-left: auto;
margin-right: auto;
}
table {
font-family: Arial, Helvetica, sans-serif;
border-collapse: collapse;
width: 100%;
}
table td, table th {
border: 1px solid #ddd;
padding: 8px;
background-color: rgb(67, 161, 130);
}
.header .left
{
background-color: #75d3b0;
text-align: center;
border-right: 0px;
}
.header .right
{
background-color: #75d3b0;
text-align: center;
border-left: 0px;
}
.left{
padding-top: 12px;
padding-bottom: 12px;
text-align: left;
background-color: #75d3b0;
color: white;
border-right: 0px;
}
.right {
text-align: right;
background-color: #75d3b0;
border-left: 0px;
}
</style>
</head>
<body>
<table>
<tr class="header">
<td class="left">
<img src="1.jpg" class="profile" />
</td>
<td class="right">
<h1>Malek Tubaishat</h1>
</td>
</tr>
<tr>
<td colspan="2">
<ul>
<li>
<a href='lab1.rar'>Lab1: my homepage</a>
</li>
<li>
<a href='#'>Lab2: on hold</a>
</li>
<li>
<a href='#'>Lab3: on hold</a>
</li>
<li>
<a href='#'>Lab4: on hold</a>
</li>
<li>
<a href='#'>Lab5: on hold</a>
</li>
</ul>
</td>
</tr>
<tr class="footer">
<td class="left">
<p> © Malek Tubaishat</p>
<p>Maharishi International University</p>
<p>1000 N 4th ST. Fairfield, Iowa, 52557</p>
<p><a href = "mailto: m.tubaishat@miu.edu">m.tubaishat@miu.edu</a></p>
</td>
<td class="right">
<img src="http://mumstudents.org/cs472/2014-09/images/w3c-html.png" />
<img src="http://mumstudents.org/cs472/2014-09/images/w3c-css.png" />
</td>
</tr>
</table>
</body>
</html>