-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path112assignment1.html
More file actions
47 lines (46 loc) · 1.38 KB
/
112assignment1.html
File metadata and controls
47 lines (46 loc) · 1.38 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
<html>
<head>
<title>Assignment 1: Net Art</title>
<style>
body {
text-align: center;
font-family: URW Chancery L, cursive;
background-image:url('https://media.giphy.com/media/3ohhwBrZCQBtmVA91K/giphy.gif');
background-position: center;
background-size: cover;
background-color: pink;
}
h1 {
font-size: 120px;
font-style: italic;
margin: auto;
}
h2 {
font-size: 25px;
text-align: center;
}
p {
font-size: 40px;
}
img {
width: 100%;
}
</style>
</head>
<body>
<h1>Welcome</h1>
<div style= "margin-left: 100px; margin-right: 100px; align:center;">
<p>
My name is Brian, welcome to my site! Here are some videos and pictures and
links for you to enjoy:
</p>
</div>
<div style= "width:700; height:400; align:center; margin:auto;">
<h2>Here's a montage video I edited that I'm proud of:</h2>
<iframe width="560" height="315" src="https://www.youtube.com/embed/J3tRQJU4P38" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div>
<a href="https://www.pointerpointer.com/"><img src="kirby3.png" title="Click me!"></a>
</div>
</body>
</html>