-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathIndex.htm
57 lines (47 loc) · 2.06 KB
/
Index.htm
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
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio Paragraph</title>
<style>
h1 {
color: rgb(121, 222, 49);
text-align: center;
}
* {
/* background-color: antiquewhite; */
}
p {
margin: 15px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
main{
border: 2px solid green;
background-color: #ccffff;
/* background-color:aquamarine; */
/* box-shadow: 9px -7px 16px 4px antiquewhite; */
box-shadow: 3px 2px 18px 0.7px green;
}
</style>
</head>
<body>
<header>
<h1>My Last Holiday</h1>
<main>
<p>My last holiday was a five-day trip to Prague in the Czech Republic. I know Prague well because I lived
there when I was at university, more than ten years ago. </p>
<p>Instead of staying in a hotel, I stayed with one of my old friends. It was so much fun, and a little bit
like my old life. I wanted to do all the same things I did in my university days, so I visited the
university. It has changed a lot and looks more modern. I also went to the supermarket near my old
house. I loved seeing all the different foods. I was really happy to find my favourite cheese and
chocolate biscuits but they were a but more expensive than i remember!</p>
<br>
<p>We dud some touristy things too. We walked up beautiful Petrin Hill and around the castle. The views of
the city are amazing up there. We walked across the historic Charles Bridge. My friend's flat is very
near the TV Tower so we saw the famous baby statue climbing up it. Those things haven't changed, of
course.</p>
</main>
</header>
</body>
</html>