-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathHelloWorld.html
More file actions
37 lines (25 loc) · 882 Bytes
/
HelloWorld.html
File metadata and controls
37 lines (25 loc) · 882 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
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<title>
My Hello, world webpage
</title>
<body>
<h1>Hello, world!</h1>
<p>Happy to see you!</p>
Testing Hyperlink absolute full address resource from online lecture.
<a href="https://www.facebook.com">facebook Homepage</a>
<br>
<br
<hr>
Testing image relative path directory resource from online lecture.
<img src="c:\users\sarai\pictures\20180504_122719.jpg" alt="Springfield Illinois State Capitol">
<br>
<br>
<hr>
What is today's date? <input type="date" placeholder="Today's Date"/>
What is your first name? <input type ="text" placeholder="Enter"/>
Testing
</body>
</head>
</html>