-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsubmit.html
58 lines (45 loc) · 2 KB
/
submit.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
<!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 2a/b: JavaScript</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="item" href = "team.html">Team</a>
<a class="item" href = "topPlayers.html">Top Players</a>
<a class="active item" href = "winAPrize.html">Win A Prize</a>
<a class="item" href = "about.html">About</a>
</nav>
<main class = "ui sixteen wide center aligned column">
<div class = "ui sixteen wide center aligned column">
<header><h1 id="indexName">THANK YOU!</h1></header>
</div>
<div class = "ui sixteen wide center aligned column">
<h2 id="h2Submit">Best of luck on the Draw to meet the players of AS Roma</h2>
</div>
</main>
<div id = "smallerImage">
<div class ="ui sixteen wide column"><img src="images/prize.jpg" alt = "Picture of kids walking with Roma Players in the Stadium" class = "ui fluid image"></div>
</div>
<br><br><br>
<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>
<script src = "js/javaScript.js"></script>
</body>
</html>