-
Notifications
You must be signed in to change notification settings - Fork 0
/
first.html
35 lines (31 loc) · 945 Bytes
/
first.html
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
<!DOCTYPE html>
<html>
<head>
<title>My First HTML</title>
<meta charset="UTF-8">
</head>
<body style="background-color:powderblue;">
<h1 style="text-align:center;">Bold, Still An Experiment, Beautiful</h1>
<p title="I am a hidden cool text" style="background-color:yellow;"> Practice makes perfect</p>
<br>
<img src="./images/html_structure.png" alt="HTML page layout" width="400" height="320">
<h2>My name is Julia</h2>
<h3>I am a student from Cambridge</h3>
<hr>
<h4>I was born in Russia</h4>
<h5>I like tennis, badminton, swimming and eating</h5>
<hr>
<h6>It is July 2017</h6>
<hr>
<pre>
Why, oh, why is life so sad?
It makes me go completely mad
Summer is almost over
Just like my ability to rhyme
</pre>
<p style="font-size:36px;">I am big</p>
<p style="color:blue;">I am blue</p>
<p style="color:red;">I am beautiful</p>
<a href="https://www.google.com">Here you can google about me</a>
</body>
</html>