-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathabout.html
169 lines (151 loc) · 5.51 KB
/
about.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
159
160
161
162
163
164
165
166
167
168
169
<!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 - About Us</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> depreciated
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>About Our Team</h2>
<p>The Texas A&M University Speech and Debate Team has a rich history dating back to 2006. Our team consists of passionate and dedicated students from various academic backgrounds who share a common interest in public speaking and argumentation.
We are a relatively small, close-knit community on campus, who seek to improve our speaking and argumentation skills in a friendly and competitive environment.
</p>
<h3>Our Mission</h3>
<p>Our mission is to foster critical thinking, effective communication, and leadership skills among our members while representing Texas A&M University at the highest levels of collegiate forensics competition.</p>
<h3>What We Do</h3>
<ul>
<li>Participate in regional and national debate tournaments</li>
<li>Compete in various speech events, including persuasive speaking, informative speaking, and oral interpretation</li>
<li>Host on-campus debates and speaking events</li>
<li>Provide public speaking workshops for the TAMU community</li>
</ul>
<h3>Join Us</h3>
<p>We welcome students from all majors and experience levels. Whether you're a seasoned debater or new to public speaking, there's a place for you on our team. Contact us to learn more about joining or attending our meetings!</p>
</div>
<footer>
<p>© 2024 Texas A&M University Speech and Debate Team</p>
</footer>
</body>
</html>