forked from cs4241-20a/a1-gettingstarted
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·55 lines (55 loc) · 1.67 KB
/
index.html
File metadata and controls
executable file
·55 lines (55 loc) · 1.67 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
<!doctype html>
<html lang="en">
<head>
<title>CS4241 Assignment 1</title>
<meta charset="utf-8">
<style>
/* Color Palette: #4085EB, #6248FA, #2B0F75, #B3AE55, #D1BA8F*/
body {background-color: #4085EB}
/* CSS Styling: Padding, text-decoration, text-align, border, font-family */
.Introduction {background-color: #6248FA; padding: 30px; color: #D1BA8F; text-align: center; font-family: Helvetica;}
.Experience {background-color: #2B0F75; padding: 25px; color: #B3AE55; text-align: left; border: 5px solid gold; font-family: serif;}
h1 {color: #D1BA8F; text-decoration: underline;}
h2 {color: #B3AE55}
</style>
</head>
<body>
<!--Extra HTML tags: ul, ol, q, small, em -->
<section class="Introduction">
<h1>Information about Nikhil Chintada</h1>
<p>
<q>I am a senior at Worcester Polytechnic Institute.</q>
</p>
<p>
Robotics Engineering Major, Computer Science Minor
</p>
<p>
Class of 2021
</p>
<section class="Experience">
<h2>Experience</h2>
<p>
<em> Computer Science Courses </em>
</p>
<ol>
<li>Introduction to Computer Science</li>
<li>Object Oriented Programming</li>
<li>Algorithms</li>
<li>Software Engineering</li>
</ol>
<p>
<em> Programming Languages </em>
</p>
<ul>
<li>HTML: <small> Some </small></li>
<li>CSS: <small> Some </small></li>
<li>Java: A lot </li>
<li>JavaScript: <small> Some </small> </li>
<li>Ruby: <small> None </small></li>
<li>Python: A lot</li>
<li>Unit Testing: <small> Some </small></li>
</ul>
</section>
</section>
</body>
</html>