-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProfile.html
56 lines (48 loc) · 1.68 KB
/
Profile.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
<!DOCTYPE html>
<html>
<head>
<title>Professor Nathan Brunelle's Profile</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="stylesProfiles.css">
</head>
<body>
<h1>Professor Nathan Brunelle</h1>
<h2>Office Hours</h2>
<p>Tuesdays and Thursdays: 3:30pm-5:00pm<br>Wednesdays: 12:00pm-2:00pm</p>
<h2>Location</h2>
<p>Rice Hall, Room 209</p>
<img src="hoos-available/src/images/Screenshot%202023-04-19%20133110.png" width=40% alt="Offices Map">
<h2>Classes</h2>
<ul>
<li>Spring 2023: CS 3100 | Data Structures and Algorithms 2</li>
<li>Summer 2018: CS 2102 | Discrete Math</li>
<li>Summer 2018: CS 4102 | Algorithms</li>
<li>Spring 2018: CS 2190 | Computer Science Seminar</li>
<li>Fall 2017: CS 4102 | Algorithms</li>
</ul>
<h2>Ongoing Research</h2>
<ul>
<li>Algorithms</li>
<li>Compression</li>
<li>Complexity Theory</li>
<li>Automata Theory</li>
<li>CS Education</li>
</ul>
<h2>Contact Information</h2>
<p>Phone: 555-1234<br>Email: [email protected]<br>Office: Rice Hall, Room 209</p>
<h2>Send a Message</h2>
<form action="mailto:[email protected]" method="post" enctype="text/plain">
<label for="name">Name:</label><br>
<input type="text" id="name" name="name"><br>
<label for="email">Email:</label><br>
<input type="email" id="email" name="email"><br>
<label for="message">Message:</label><br>
<textarea id="message" name="message"></textarea><br><br>
<input type="submit" value="Send">
</form>
<h2>Helpful Links</h2>
<a href="https://vagrades.com/uva">VA Grade</a>
<a href="https://thecourseforum.com/">Course Forum</a>
<a href="https://www.ratemyprofessors.com">Rate My Professors</a>
</body>
</html>