-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimage_practice2.html
More file actions
61 lines (52 loc) · 1.15 KB
/
Copy pathimage_practice2.html
File metadata and controls
61 lines (52 loc) · 1.15 KB
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
<!Doctype html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>You've been social worked!</title>
</head>
<body>
<div class="image"">
<style type="text/css">
image {
position: relative;
width: 100%; /* for IE 6 */
}
h2 {
position: absolute;
top: 0
right: 300em;
width: 100%;
}
h2 span {
color: white;
font: bold 24 px/45px Helvetica, Sans-Serif;
letter-pacing: -1px;
background: rgb(0, 0, 0);
background: rgba(0, 0, 0, 0.7);
padding 10px;
}
</style>
<h2><span> "You've been social worked!"</span></h2>
<img src="http://thebertshow.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-22-at-8.38.22-AM.png" alt = "" />
</div>
<address>Made June 8 2013<br>
by Maggie.</address>
<button type="button" onclick="alert('You have been social worked!')"><strong>Social work!</strong></button>
<p id="vaR">var</p>
<script>
/*
This is a script
I created
when I was learning html!
function xtimesy(x,y)
{
if (x+y<7)
{
return
}
return x*++y //Hope this writes the value of y
}
document.getElementById("vaR").innerHTML=xtimesy(3,5);
*/
</script>
</body>
</html>