summaryrefslogtreecommitdiffstats
path: root/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'index.html')
-rw-r--r--index.html136
1 files changed, 136 insertions, 0 deletions
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..0b77ff5
--- /dev/null
+++ b/index.html
@@ -0,0 +1,136 @@
+<!doctype html>
+<html lang="fr">
+<head>
+ <meta charset="utf-8">
+ <title>Technicolor's Foosball Tournament</title>
+ <link rel="stylesheet" type="text/css" href="style.css">
+ <link href='http://fonts.googleapis.com/css?family=Nunito:300,700' rel='stylesheet' type='text/css'>
+</head>
+<body>
+ <div id="content">
+ <header>
+ <h1>Technicolor's Series of Foosball</h1>
+ <p>The coolest Bay Area event</p>
+ </header>
+ <menu>
+ <ul>
+ <li><a href="teams.html">Teams</a></li>
+ <li><a href="schedule.html">Schedule</a></li>
+ <li><a href="rules.html">Rules</a></li>
+ </ul>
+ </menu>
+
+ <!-- list of games -->
+ <article id="bracket">
+
+ <!-- group stage -->
+ <div id="listGroups">
+ <div id="groupA" class="group">
+ <h2>GROUP A</h2>
+ <p>Gaijin vs Olympic Croquet</p>
+ <p>{Pedro, ?} vs Gaijin</p>
+ <p>Olympic Croquet vs {Pedro, ?}</p>
+ </div>
+
+ <div id="groupB" class="group">
+ <h2>GROUP B</h2>
+ <p>Night Hawks vs Cake and Death</p>
+ </div>
+
+ <div id="groupC" class="group">
+ <h2>GROUP C</h2>
+ <p>Red and Ruskie vs {Sandy, ?}</p>
+ <p>{Vijay, Zhen} vs Red and Ruskie</p>
+ <p>{Sandy, ?} vs {Vijay, Zhen}</p>
+ </div>
+
+ <div id="groupD" class="group">
+ <h2>GROUP D</h2>
+ <p>{Nadia, Salman} vs {Nina, Smriti}</p>
+ </div>
+ </div>
+
+ <br style='clear:both'/>
+
+ <div id="rankingA" class="ranking">
+ <h2>Ranking group A</h2>
+ <p>1 ...</p>
+ <p>2 ...</p>
+ <p>3 ...</p>
+ </div>
+
+ <div id="rankingB" class="ranking">
+ <h2>Ranking group B</h2>
+ <p>1 ...</p>
+ <p>2 ...</p>
+ </div>
+
+ <div id="rankingC" class="ranking">
+ <h2>Ranking group C</h2>
+ <p>1 ...</p>
+ <p>2 ...</p>
+ <p>3 ...</p>
+ </div>
+
+ <div id="rankingD" class="ranking">
+ <h2>Ranking group D</h2>
+ <p>1 ...</p>
+ <p>2 ...</p>
+ </div>
+
+ <br style="clear:both"/>
+
+ <!-- elimiatory games -->
+ <div id="Q1" class="quarter">
+ <h2>Quarter-final 1</h2>
+ <p>First team group A vs Second team group B</p>
+ </div>
+
+ <div id="Q2" class="quarter">
+ <h2>Quarter-final 2</h2>
+ <p>First team group B vs Second team group A</p>
+ </div>
+
+ <div id="Q3" class="quarter">
+ <h2>Quarter-final 3</h2>
+ <p>First team group C vs Second team group D</p>
+ </div>
+
+ <div id="Q4" class="quarter">
+ <h2>Quarter-final 4</h2>
+ <p>First team group D vs Second team group C</p>
+ </div>
+
+ <br style="clear:both"/>
+
+ <div id="S1" class="semi">
+ <h2>Semi-final 1</h2>
+ <p>Winner Q1 vs Winner Q3</p>
+ </div>
+
+ <div id="S2" class="semi">
+ <h2>Semi-final 2</h2>
+ <p>Winner Q2 vs Winner Q4</p>
+ </div>
+
+ <br style='clear:both'/>
+
+ <div id="F">
+ <h2>FINAL</h2>
+ <p>? vs ?</p>
+ </div>
+
+
+
+
+
+
+ </article>
+
+
+ <footer>
+ © Copyright 2012, Entité TriCastor
+ </footer>
+ </div>
+</body>
+</html>