-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrules.html
132 lines (128 loc) · 4.97 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!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>Rules - Mighty Ducks Hockey League</title>
<link rel="icon" href="./assets/favicon.ico" type="image/favicon.ico" />
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<nav>
<h1 class="page-title">Mighty Ducks Hockey League</h1>
<ul class="navbar-items">
<li><a href="./index.html" class="navbar-item home">Home</a></li>
<li><a href="./about.html" class="navbar-item about">About</a></li>
<li><a href="./info.html" class="navbar-item info">Info</a></li>
<li><a href="./rules.html" class="navbar-item rules in">Rules</a></li>
<li>
<a href="./contact.html" class="navbar-item contact">Contact</a>
</li>
<li>
<a href="./registration.html" class="navbar-item register"
>Register</a
>
</li>
</ul>
</nav>
<div class="banner"></div>
<section>
<h2 class="section-title">Rules of Play & Policies</h2>
<div class="section-container">
<img
src="./assets/Logo_Mighty_ducks-01.png"
alt="Migthy Ducks Logo"
class="logo"
/>
<div class="rules">
<h2>SPORTSMANSHIP</h2>
<p>
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.
</p>
<h2>IHF FIELD REGULATIONS</h2>
<ol class="field-regulations-list">
<li>
<h3>DIMENSIONS.</h3>
<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>
<h3>COMPETITION FIELDS.</h3>
<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>
<h3>FIELDS USED BY YOUNG AGE GROUPS.</h3>
<ol class="field-rules">
<li>
<p>
U-6 play on a field approximately 20 X 40 yards with no
penalty areas. Fields for older age groups should be
progressively larger.
</p>
</li>
<li>
<p>
U-8 plays on a field 40-50 yards in length and 20-30 yards
width
</p>
</li>
<li>
<p>
U-10 play on a field 70-80 yards in length and 40-50 yards
in width.
</p>
</li>
<li>
<p>
In addition, fields used by young age groups may have their
internal dimensions and size of goal similarly modified.
</p>
</li>
</ol>
</li>
</ol>
<h2>ALL-PLAY</h2>
<p>
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.
</p>
<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>
<sub
>🛈 IHF rules shall govern MDHL play except as modified herein.</sub
>
</div>
</div>
</section>
<footer>
<p>© Made with ♡ by tsu</p>
</footer>
</body>
</html>