-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (65 loc) · 3.25 KB
/
index.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
87
88
89
90
<!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="active item" href = "index.html">Home</a>
<a class="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">
<header><h1 id="indexName">AS ROMA</h1></header>
</div>
<div class = "ui computer row">
<div class ="ui eight wide column"><img src="images/leftIndex.jpg" alt = "Picture of Roma Stadium" class = "ui fluid image"></div>
<div class = "ui eight wide column"><img src="images/rightIndex.jpg" alt = "Picture of Roma players celebrating" class = "ui fluid image"></div>
</div>
<div class = "ui sixteen wide row">
<blockquote id="indexQuote">This club is one of the best teams in the world. They offer more than just scoring goals and winning
matches. They play passionately for every single fan, and for this reason, this team is better than any other.</blockquote>
</div>
<main class = "ui three column center aligned stackable row">
<section class = "ui column">
<h4>TEAM</h4>
<p>AS Roma is a one of a kind team! They do their best to make their fans happy. Its history goes back to 1927 when it was founded.</p>
<a href="team.html"><button class="ui primary button">
Read More! - <i class ="hand pointer icon"></i>
</button></a>
</section>
<section class = "ui column">
<h4>TOP PLAYERS</h4>
<p>If you wish to know who are the top strikers, midfielders, defenders, and goalkeepers of the AS Roma team. Just click on the button below.</p>
<a href="topPlayers.html"><button class="ui primary button">
Read More! - <i class ="hand pointer icon"></i>
</button></a>
</section>
<section class = "ui column">
<h4>WIN A PRIZE</h4>
<p>Win a trip to Roma and meet the club and players for free. Fill out a quick survey and your details and you are all set.</p>
<a href="winAPrize.html"><button class="ui primary button" >
Read More! - <i class ="hand pointer icon"></i>
</button></a>
</section>
</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>