-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (45 loc) · 1.98 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>STEM-Eligible Course Finder</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>STEM-Eligible Course Finder</h1>
</header>
<div class="container">
<h2>Find Courses</h2>
<p>Filter for STEM-eligible courses to maintain your visa status while pursuing relevant classes:</p>
<form id="courseForm">
<div class="form-group">
<label for="careerGoal">What is your primary career goal?</label>
<input type="text" id="careerGoal" name="careerGoal" required>
</div>
<div class="form-group">
<label for="industryPreference">Preferred Industry:</label>
<select id="industryPreference" name="industryPreference" required>
<option value="">Select an Industry</option>
<option value="Data & Technology">Data & Technology</option>
<option value="Government & Politics">Government & Politics</option>
<option value="International Development">International Development</option>
<option value="Leadership & Organizational Change">Leadership and Organizational Change</option>
<option value="Entrepreneurship & Non-Profits">Entrepreneurship & Non-Profits</option>
</select>
</div>
<div class="form-group">
<label for="stemEligible">Filter for STEM-eligible courses:</label>
<input type="checkbox" id="stemEligible" name="stemEligible">
</div>
<button type="submit">Submit</button>
</form>
<div class="results" id="results">
<h3>Recommended Courses</h3>
<ul id="courseList"></ul>
</div>
</div>
<script src="script.js"></script>
</body>
</html>