-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (67 loc) · 2.19 KB
/
index.html
File metadata and controls
72 lines (67 loc) · 2.19 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
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Professor Krasso's CSD 340 Landing Page</title>
<link rel="stylesheet" type="text/css" href="site.css" />
<link href="https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;700&display=swap" rel="stylesheet">
</head>
<body>
<div id="container">
<h1>Professor Krasso's Landing Page</h1>
<h2>CSD 340 Web Development with HTML and CSS</h2>
<hr />
<h3>Module Assignments</h3>
<ul>
<li>
<a href="module-2/bawp_EX1.html">Assignment 2.2</a>
</li>
<li>
<a href="module-3/bawp_EX2.html">Assignment 3.2</a>
</li>
<li>
<a href="module-4/bawp_EX3.html">Assignment 4.3</a>
</li>
<li>
<a href="module-5/bawp_EX4.html">Assignment 5.3</a>
</li>
<li>
<a href="module-7/bawp_EX5.html">Assignment 7.2</a>
</li>
<li>
<a href="module-9/bawp_EX6.html">Assignment 9.2</a>
</li>
<li>
<a href="module-11/assignment-11.2.html">Assignment 11.2</a>
</li>
</ul>
<h3>Projects</h3>
<ul>
<li>
<a href="#">bioSite Project Home Page</a>
</li>
<li>
<a href="#">Final Exam</a>
</li>
</ul>
<h4>Important Links</h4>
<ul>
<li>
<a href="https://validator.w3.org/" target="_blank">W3C HTML Validator</a>
</li>
<li>
<a href="http://jigsaw.w3.org/css-validator/" target="_blank">W3C CSS Validator</a>
</li>
<li>
<a href="https://www.w3schools.com/html/" target="_blank">HTML Tutorial</a>
</li>
<li>
<a href="https://github.com/buwebdev/csd-340" target="_blank">WEB 340's GitHub Repository</a>
</li>
<li>
<a href="https://bruinconnect.bellevue.edu/" target="_blank">BRUIN Connect</a>
</li>
</ul>
</div>
</body>
</html>