forked from Wmoo235/TAMUSpeechDebateTeamWebsite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpolicy_debate.html
158 lines (141 loc) · 4.85 KB
/
policy_debate.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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="./styles/main.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TAMU Speech and Debate Team - Policy Debate</title>
<link rel="apple-touch-icon" sizes="180x180" href="./images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./images/favicon-16x16.png">
<link rel="manifest" href="./images/site.webmanifest">
<link rel="mask-icon" href="./images/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="./images/favicon.ico">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-config" content="./images/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<!--<style>
body {
font-family: 'Roboto', sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #f4f4f4;
display: flex;
flex-direction: column;
min-height: 100vh;
color: #333;
}
header {
background-color: #500000;
color: #fff;
padding: 1rem;
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
}
.logo {
width: 100px;
height: 100px;
margin-right: 20px;
}
h1 {
margin: 0;
font-size: 2em;
text-align: left;
}
nav {
background-color: #333;
color: #fff;
padding: 1rem;
}
nav ul {
list-style-type: none;
padding: 0;
margin: 0;
display: flex;
justify-content: center;
flex-wrap: wrap;
}
nav ul li {
margin-right: 15px;
}
nav ul li a {
color: #fff;
text-decoration: none;
font-weight: 500;
padding: 0.5rem 1rem;
transition: background-color 0.3s ease;
}
nav ul li a:hover {
background-color: #444;
border-radius: 5px;
}
.container {
width: 90%;
max-width: 1200px;
margin: 20px auto;
background-color: #fff;
box-shadow: 0 0 15px rgba(0,0,0,0.1);
padding: 20px;
flex-grow: 1;
}
h2, h3 {
color: #500000;
}
ul {
padding-left: 20px;
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 1rem;
margin-top: auto;
}
@media (max-width: 768px) {
header {
flex-direction: column;
text-align: center;
}
.logo {
margin-right: 0;
margin-bottom: 10px;
}
nav ul li {
margin-bottom: 10px;
display: block;
}
.container {
width: 95%;
}
}
</style>-->
</head>
<body>
<header>
<img src="./images/debate_logo.png" alt="TAMU Speech and Debate Team Logo" class="logo">
<h1>Texas A&M University Speech and Debate Team</h1>
</header>
<nav>
<ul>
<li><a href="./index.html">Home</a></li>
<li><a href="./about.html">About</a></li>
<li><a href="./team.html">Our Team</a></li>
<li><a href="./contact.html">Contact</a></li>
<li><a href="./policy_debate.html">Policy Debate</a></li>
</ul>
</nav>
<div class="container">
<h2>Policy Debate</h2>
<p>The Texas A&M University Speech and Debate Team competes in the NDT CEDA policy debate circuit. We are proud to be the only student-run team on this highly competitive circuit, showcasing the dedication and skills of our members.</p>
<p>If you are interested in helping us prepare for tournaments by researching and cutting cards, we welcome you to join our Google group at: <a href="mailto:[email protected]">[email protected]</a>.</p>
<h3>What is Policy Debate?</h3>
<p>Policy debate is a rigorous form of debate in which teams advocate for or against a resolution that typically calls for a change in policy. The NDT CEDA circuit is known for its in-depth analysis, extensive research, and fast-paced rounds that challenge participants to think critically and argue effectively.</p>
</div>
<footer>
<p>© 2024 Texas A&M University Speech and Debate Team</p>
</footer>
</body>
</html>