forked from cs4241-22a/a1-gettingstarted
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (61 loc) · 2.44 KB
/
index.html
File metadata and controls
62 lines (61 loc) · 2.44 KB
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
<!doctype html>
<html lang="en">
<head>
<title>CS4241 Assignment 1</title>
<meta charset="utf-8">
<link href="main.css" rel = "stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Anek+Telugu:wght@300&display=swap" rel="stylesheet">
</head>
<body>
<h1>Information about Samara Holmes</h1>
<p class="intro">
Hey I'm Samara and I'm a junior at <a href = https://wpi.edu>WPI</a> with interests in photography/videography and drones. I'm from New Hampshire and I'm excited for fall foliage.
</p>
<p>
I'm double majoring in computer science and robotics engineering at WPI. This is my first 4000 level class and I have interesting classes coming up including HCI, Soft Eng, ML, and AI.
</p>
<p hidden>YOU CANT SEE THIS</p>
<details>
<summary>Previous Classes</summary>
<ol>
<li>ACCELERATED INTRODUCTION TO PROGRAM DESIGN</li>
<li>INTRODUCTION TO MACHINE ORGANIZATION AND ASSEMBLY LANGUAGE</li>
<li>OBJECT-ORIENTED DESIGN CONCEPTS</li>
<li>SYSTEMS PROGRAMMING CONCEPTS</li>
<li>ALGORITHMS</li>
<li>OPERATING SYSTEMS</li>
<li>SOCIAL IMPLICATIONS OF INFORMATION PROCESSING</li>
<li>FOUNDATIONS OF COMPUTER SCIENCE</li>
</ol>
</details>
<p class="question">Have you taken these classes?</p>
<p>
<input type="checkbox" id="answer1" name="no" value="No">
<label for="no"> No </label>
<input type="checkbox" id="answer2" name="yes" value="Yes">
<label for="yes"> Yes </label>
</p>
<h2>Coding Experience</h2>
<p>
I've worked previously with HTML and CSS a lot to create <a href = https://samaraholmes.bitbucket.io>my website</a>, but not so much with JavaScript. I'm looking forward to learning new skills from this class.
</p>
<ul>
<li>HTML - A lot of experience</li>
<li>CSS - A lot of experience</li>
<li>Java - A lot of experience</li>
<li>JavaScript - Little experience</li>
<li>Ruby - No experience</li>
<li>Python - Some experience</li>
<li>Unit Testing - Little experience</li>
</ul>
<h2>Work Experience</h2>
<ul>
<li>AeroVironment</li>
<li>University of New Hampshire</li>
<li>RiverWoods</li>
</ul>
</body>
<footer>© Samara Holmes 2022. All rights reserved.</footer>
</html>