-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (30 loc) · 843 Bytes
/
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
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/html">
<head>
<link rel="stylesheet" type="text/css" href="indexCSS.css">
<style>
img{
position:absolute;
left: 0px;
right: 0px;
top: -1px;
z-index: -1;
}
</style>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<a href="table.html">Table</a>
<a href="form.html">Form</a>
<br>
<h1>This is my heading for the index</h1>
<h1>with an HTML picture behind.</h1>
<img src="http://groups.engin.umd.umich.edu/CIS/course.des/cis400/html/html.jpg" width="500" height="150">
<br>
<br>
<h2> Included is the weirdest video! </h2>
<iframe align="middle" width="420" height="345" src="https://www.youtube.com/embed/J1c2KzJbcGA">
</iframe>
</body>
</html>