-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (30 loc) · 967 Bytes
/
index.html
File metadata and controls
31 lines (30 loc) · 967 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<title>My test page</title>
<style>
body {
display: flex;
flex-direction: column;
margin: auto;
text-align: center;
}
section {
margin-bottom: 25px;
}
a {
font-size: larger;
}
</style>
</head>
<body>
<section>
<h1>Title!</h1>
<p>This is my page that I am creating for <strong>assignment 2a</strong></p>
<p><a href="https://www.youtube.com/watch?v=dQw4w9WgXcQ">heres a link to the assignment</a></p>
<img src="https://cdn.shopify.com/s/files/1/1061/1924/products/Emoji_Icon_-_Smiling_large.png?v=1571606089">
</section>
<a href="assignments/4/fancifymytext.html">CLICK HERE FOR ASSIGNMENT 4</a>
</body>
</html>