-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquestions.html
More file actions
43 lines (38 loc) · 1.14 KB
/
Copy pathquestions.html
File metadata and controls
43 lines (38 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Hello World Page</title>
<style>
p{font-weight:bold;}
p{background-color:Black; color: White;}
span{font-style: italic;}
#fancy{font-style: italic;}
</style>
</head>
<body>
<h1>
Hello World
</h1>
<p>
Hello,
<span>
World!
</span>
</p>
<img src="https://media.giphy.com/media/THuO7JQbmVdpEZnrMw/giphy.gif?cid=790b7611yyf53108fe6xphqeqib54i83k8za9q027w73gmx8&ep=v1_gifs_search&rid=giphy.gif&ct=g">
<!-- this is a comment-->
</body>
</html>
<!--
Create a webpage:
Named "Hello World Page"
With a content header "A Webpage"
With paragraph containing the text "Hello, World!"
With at least one comment.
Properly indented.
Style using a 'style' element in the 'head' element.
Bold the "Hello, World!" text, in a 'p' element.
Make the header red, blue, or green, in a 'h1' element.
Italicize the "World!" text, in a 'span' element.
-->