-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathteam.html
86 lines (72 loc) · 3.8 KB
/
team.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/semantic.css">
<title>Assignment 2: Semmantic UI</title>
<link rel="stylesheet" href = "css/style.css">
</head>
<body>
<div class = "ui grid stackable container">
<a href="index.html">
<img src="images/lobaLogo.png" id="logo" alt="Roma Logo">
</a>
<nav class="ui top attached tabular stackable menu">
<a class="item" href = "index.html">Home</a>
<a class="active item" href = "team.html">Team</a>
<a class="item" href = "topPlayers.html">Top Players</a>
<a class="item" href = "winAPrize.html">Win A Prize</a>
</nav>
<div class = "ui sixteen wide center aligned column">
<h1>TEAM</h1>
</div>
<header class = "ui computer row">
<div class = "ui eight wide column">
<img src="images/fullTeam.jpg" alt="Picture of AS Roma Team">
</div>
<section class = "ui eight wide column">
<h3 class="h3Team">AS Roma Team</h3>
<p class = "pRoma">AS Roma is an Italian professional football club founded in 1927, in Rome.
The first time that Roma won Serie A league was in 1941. Roma has always been
an amazing team since beggining of times. Their Stadium is the Stadio Olimpico. The club's
colors are carmine red and golden yellow. One more thing that distinguishes AS Roma is their club badge
which is a she-wolf.</p>
</section>
</header>
<div class="ui sixteen wide center aligned column">
<hr>
</div>
<main class = "ui two column center aligned stackable row">
<div class = "ui column">
<img src="images/totti.jpg" alt="Picture of Francesco Totti" class = "ui fluid circular image">
<h3 class="h3TottiStadium">Francesco Totti</h3>
<p class="pRoma">Totti since he first started playing for Roma, he never abandoned the team. He spent his entire Soccer career at Roma.
He's won a Serie A title, two Supercoppa Italiana Titles, and two Coppa Italia Titles. He was considered a remarkable striker with a sniper-like aim with the ball.
He is the second-highest scorer of all time in Italian leage history. Totti is considered one of the greatest players of all time. A true Legend. </p>
<a href="https://en.wikipedia.org/wiki/Francesco_Totti" target="_blank"><button class="ui primary button">
<i class ="soccer ball icon"></i>Read More!
</button></a>
</div>
<div class = "ui column">
<img src="images/stadioOlimpico.jpg" alt="Picture of the Stadio Olimpico" class = "ui fluid circular image">
<h3 class="h3TottiStadium">Stadio Olimpico</h3>
<p class="pRoma">The Stadio Olimpico is AS Roma's main Stadium, where they train, play and learn new skills. It is located in Rome, north of the city.
The Stadium was built in 1927, and its current capacity is of 70,634 people. A tour around this legendary Stadium would be an experience you won't forget
if you are a Roma fan. You will get to see Roma's cups, shirts signed by famous players, and if lucky you might even meet some of Roma's players.</p>
<a href="https://www.viator.com/en-IE/Rome-attractions/Rome-Olympic-Stadium-Stadio-Olimpico/d511-a17283?sortType=featured" target="_blank"><button class="ui negative button">
<i class ="ticket icon"></i>Book Tickets!
</button></a>
</div>
</main>
<footer class = "sixteen wide center aligned column">
<p class="pfooter">© AS ROMA - All rights reserved</p>
<p class="pfooter"><a href="mailto:[email protected]" class="indexQuoteLinks">AS Roma Email</a></p>
</footer>
</div>
<script
src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/semantic.js"></script>
</body>
</html>