-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (69 loc) · 2.52 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/main.css">
<title>CPW224 - JavaScript</title>
</head>
<body>
<div>
<header>
<h1>CPW224 - JavaScript's Assignment</h1>
</header>
<div>
<nav>
<ul>
<li><a href="index.html">Home Page</a></li>
<li><a href="products/apCalculator.html">Area & Perimeter Calculator</a></li>
<li><a href="products/tempConvertor.html">Temperature Convertor</a></li>
<li><a href="products/gradeConvertor.html">Grade Convertor</a></li>
<li><a href="products/changeCalculator.html">Change Convertor</a></li>
<li><a href="products/MPGCalc.html">MPG Calc with Functions</a></li>
</ul>
</nav>
<main>
<div>
<h1>Welcome to 2nd Quarters (Winter 2024) !!!</h1>
<h2>Owner Information</h2>
<p>
Name: Nguyen, Thien <br>
Major: Computer Programming <br>
Email: abc@students.cptc.edu
</p>
</div>
<div>
<h2>Currently Education</h2>
<p>
Java Object-Orientated Programming I <br>
Introduction to Javascript <br>
Advanced Database Programming
</p>
<h3>
Next Quarter
</h3>
<p>
Java Object-Orientated Programming II <br>
.Net Programming <br>
Advanced JavaScript
</p>
</div>
<div>
<h3>Hobby</h3>
<p>
Investment <br>
Cryptocurrencies <br>
</p>
</div>
</main>
</div>
<footer>
<p>
Copyright © 2024 Nguyen, Thien (JavaScript's Assignment)
<a href="https://github.com/bluestar7589" target="_blank">Github</a>
<a href="https://www.linkedin.com/in/nguyen-thien-5b2a5972/" target="_blank">LinkedIn</a>
</p>
</footer>
</div>
</body>
</html>