-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrules.html
83 lines (77 loc) · 4.12 KB
/
rules.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mighty Ducks Hockey League</title>
<link rel="stylesheet" href="./styles/style.css">
</head>
<body>
<header>
<h1>Mighty Ducks Hockey League </h1>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
<a href="#">Rules</a>
<a href="game_info.html">Game Information</a>
<a href="registration.html">Registration</a>
</nav>
<img id="logo" src="/assets/LogoMightyducks-01.png" alt="logo">
</header>
<main>
<h2>RULES OF PLAY & POLICIES</h2>
<h3 class="Hrules" >IHF rules shall govern MDHL play except as modified herein</h3>
<dl class="rules">
<dt>SPORTSMANSHIP</dt>
<dd>The common interest that members of the Association share is to inspire
youth to practice the ideals of sportsmanship and fair play. Any player, coach,
team, parent, spectator, administrator or referee whose behavior detracts from
this purpose is subject to disciplinary action regardless of technical hockey
background, expertise, accomplishments or standing.</dd>
<dt>IHF FIELD REGULATIONS </dt>
<dd>
<ol class="rules1">
<li>DIMENSIONS.
<p>IHF Law 1 provides for flexible external field dimensions within
a given maximum and minimum width and length. These dimensions should be
adhered to for all fields used by teams under 12 and older.</p>
</li>
<li>COMPETITION FIELDS.
<p>Fields used within the competition program must be
a minimum of 100 x 60 yards.Leagues, districts or associations participating in
the state competition program that are unable to provide a field that meets these
minimum requirements must advise the State Competition Board which will
assign its Fields Committee to inspect the field and recommend to the Board
whether or not a waiver of the minimum dimensions should be granted. Teams
from leagues, districts or associations that are unable to provide an acceptable
field may be required to play all their games away.</p>
</li>
<li>FIELDS USED BY YOUNG AGE GROUPS
<ol class="abc">
<li>U-6 play on a field approximately 20 X 40 yards with no penalty areas. Fields
for older age groups should be progressively larger.</li>
<li>U-8 plays on a field 40-50 yards in length and 20-30 yards width.</li>
<li> U-10 play on a field 70-80 yards in length and 40-50 yards in width.</li>
<li>In addition, fields used by young age groups may have their internal
dimensions and size of goal similarly modified.</li>
</ol>
</li>
</ol>
</dd>
<dt>ALL-PLAY</dt>
<dd>All-play means that every recreation player on every team shall play atleast
fifty percent of each game. Coaches in the competition program are encouraged
to play their players 50% of each game.
<ul>
<li>A Coach shall be permitted to not play a player 50% of each game
under special circumstances, e.g., unexcused absences from practice
and/or games, ungentlemanly conduct at practice and/or games, and
injuries.</li>
</ul>
</dd>
</dl>
</main>
</body>
</html>