-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPart1_HTML.html
More file actions
41 lines (38 loc) · 916 Bytes
/
Copy pathPart1_HTML.html
File metadata and controls
41 lines (38 loc) · 916 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
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Dancing+Script" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="Part1_CSS.css">
<title>Project 1</title>
<style >
.abc
{
width: 80px;
height: 150px;
margin: 10px;
display: inline-block;
}
</style>
</head>
<body>
<h1>INSPIRED BY SPECTRUM V BY THE ARTIST ELLSWORTH KELLY</h1>
<table width="100%">
<tr>
<td id="1"></td>
<td id="2"></td>
<td id="3"></td>
<td id="4"></td>
<td id="5"></td>
</tr>
</table>
<div style="margin-left: 50px;">
<center>
<div class="abc" style="background-color: red"></div>
<div class="abc" style="background-color: green"></div>
<div class="abc" style="background-color: blue"></div>
<div class="abc" style="background-color: orange"></div>
<div class="abc" style="background-color: black"></div>
</center>
</div>
</body>
</html>