Skip to content

Commit 6a3741e

Browse files
1 parent 8d0a63b commit 6a3741e

9 files changed

+10906
-0
lines changed

HTML5 and CSS/CSS and Web Page Layout.html

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66

77
</head>
88
<body>
9+
<div>
910

11+
</div>
1012
</body>
1113
</html>

HTML5 and CSS/CSS table form.html

+78
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
<!DOCTYPE html>
2+
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
3+
<head>
4+
<meta charset="utf-8" />
5+
<title>Web Engineering - Summer 2018, Question no. 2</title>
6+
<style>
7+
#table_one {
8+
width: 750px;
9+
height: 50px;
10+
}
11+
#table_one, td {
12+
border: 1px solid black;
13+
border-collapse: collapse;
14+
padding: 15px;
15+
}
16+
#one {
17+
margin-left: 100px;
18+
}
19+
#table_two {
20+
border-collapse: collapse;
21+
width: 750px;
22+
margin-top: 5px;
23+
}
24+
/*tr:hover {
25+
background: #0094ff;
26+
}*/
27+
28+
</style>
29+
</head>
30+
<body>
31+
<table border="1" id="table_one">
32+
<tr>
33+
<td width="100px" align="center">LOGO</td>
34+
<td colspan="2" align="right">
35+
Online Electronic Shop
36+
<a href="login.html" id="one">LOGIN</a>
37+
&emsp;&emsp;&emsp;
38+
<a href="reg.html">REGISTER</a>
39+
</td>
40+
</tr>
41+
</table>
42+
<table border="1" id="table_two">
43+
<tr>
44+
<td align="center">Home</td>
45+
<td align="center">Support</td>
46+
<td align="center">Special Offer</td>
47+
<td align="center">Tutorials</td>
48+
<td align="center">My Account</td>
49+
<td align="center">Contact Us</td>
50+
<td align="center">FAQ</td>
51+
</tr>
52+
</table>
53+
<table border="1" style="border-collapse: collapse; margin-top: 5px; width: 750px;">
54+
55+
<thead>
56+
<tr>
57+
<th height="0" colspan="8"></th>
58+
</tr>
59+
<tr>
60+
<th></th>
61+
<th></th>
62+
<th></th>
63+
<th></th>
64+
<th></th>
65+
<th></th>
66+
<th></th>
67+
<th></th>
68+
</tr>
69+
</thead>
70+
71+
<tr><td>Step by category</td></tr>
72+
<tr><td>A</td></tr>
73+
<tr><td>B</td></tr>
74+
<tr><td>C</td></tr>
75+
<tr><td>D</td></tr>
76+
</table>
77+
</body>
78+
</html>

HTML5 and CSS/HTML5 and CSS.csproj

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
<Content Include="CSS selector, internal and external.html" />
2222
<Content Include="CSS table.html" />
2323
<Content Include="CSS text and font.html" />
24+
<Content Include="CSS table form.html" />
2425
<Content Include="entity.html" />
2526
<Content Include="favicon.ico" />
2627
<Content Include="First Style.css" />

0 commit comments

Comments
 (0)