-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhello.html
More file actions
45 lines (37 loc) · 1.02 KB
/
hello.html
File metadata and controls
45 lines (37 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>First hello world!</title>
</head>
<style>
body {
background-color: #d0e4fe;
}
h1 {
color: darkslateblue;
text-align: center;
}
p {
font-family: 'Helvetica';
font-size: 20px;
text-align: center;
}
#para1 {
font-family: 'Courier 10 Pitch';
font-size: 25px;
text-align: right;
color: saddlebrown;
}
</style>
<body>
<h1>This is a Heading.</h1>
<p id="para1">This is a strange paragraph!</p>
<p>This is another paragraph?</p>
<h2>Header time!</h2>
<h5>Let us try a link :P</h5>
<a href="http://github.com/GusSa" title="Come on... don't be shy, you know you want to!">Link to my git page ^_^</a>
<p title="The kitten paragraph!">And now... a cat... because I can!</p>
<img src="kitten.jpg" alt="<insert cute drawf kitten here>" width="500" height="350" title="Just don't squeeze it till it pops :)">
</body>
</html>