-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·92 lines (92 loc) · 2.49 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
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Football team formation</title>
<meta name="description" content="Welcome to Team Aligment">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/style.css" />
<script src="js/interact.min.js" type="text/javascript" defer> </script>
<script src="js/custom.js" type="text/javascript" defer> </script>
</head>
<body>
<header>
<h1>Football Team Formation</h1>
</header>
<main>
<section id="clipboard">
<section id="offense">
<p>Offense</p>
<ul>
<li>QB - 04 Dak Prescott</li>
<li>RB - 21 Ezekiel Elliot</li>
<li>WR - 88 Dez Bryant</li>
<li>WR - 83 Terrance Williams</li>
<li>TE - 82 Jason Witten</li>
<li>C - 72 Travis Frederick</li>
</ul>
</section>
<section id="defense">
<p>Defense</p>
<ul>
<div>DL - 98 David Irving</div>
<div>DL - 95 Tyrone Crawford</div>
<li>CB - 33 Chidobe Awuzie</li>
<li>CB - 27 Jourdan Lewis</li>
<li>LB - 50 Sean Lee</li>
<li>S - 31 Byron Jones</li>
</ul>
</section>
</section>
<section id="creative-way">
<section id="offense-creative" class="creative">
<p class="title">Offense</p>
<div id="p1" class="draggable">
<p>QB - 04<br>Dak Prescott</p>
</div>
<div id="p2" class="draggable">
<p >RB - 21<br>Ezekiel Elliot</p>
</div>
<div id="p3" class="draggable">
<p>WR - 88<br>Dez Bryant</p>
</div>
<div id="p4" class="draggable">
<p>WR - 83<br>Terrance Williams</p>
</div>
<div id="p5" class="draggable">
<p>TE - 82<br>Jason Witten</p>
</div>
<div id="p6" class="draggable">
<p>C - 72<br>Travis Frederick</p>
</div>
</section>
<hr>
<section id="defense-creative" class="creative">
<p class="title">Defense</p>
<div id="p7" class="draggable">
<p>DL - 98<br>David Irving</p>
</div>
<div id="p8" class="draggable">
<p >DL - 95<br>Tyrone Crawford</p>
</div>
<div id="p9" class="draggable">
<p>CB - 33<br>Chidobe Awuzie</p>
</div>
<div id="p10" class="draggable">
<p>CB - 27<br>Jourdan Lewis</p>
</div>
<div id="p11" class="draggable">
<p>LB - 50<br>Sean Lee</p>
</div>
<div id="p12" class="draggable">
<p>S - 31<br>Byron Jones</p>
</div>
</section>
</section>
</main>
<footer>
<p>© 2017 The Acme Company<p>
</footer>
</body>
</html>