-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
109 lines (99 loc) · 3.68 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html>
<head>
<title>Ryan Kites’s CSD 340 Landing Page</title>
<meta charset="UTF-8">
<meta name="description" content="BU CSD 340 Project">
<meta name="keywords" content="Web Development, HTML, CSS, JavaScript">
<meta name="author" content="Ryan Kite">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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=Oswald:wght@300;400;500;700" rel="stylesheet">
<link rel="stylesheet" href="site.css">
</head>
<body>
<div id="container">
<h1>Ryan Kite’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/kite_EX1.html">Assignment 2.2</a>
</li>
<li>
<a href="module-3/kite_EX2.html">Assignment 3.2</a>
</li>
<li>
<a href="module-4/kite_EX3.html">Assignment 4.3</a>
</li>
<li>
<a href="module-5/kite_EX4.html">Assignment 5.2</a>
</li>
<li>
<a href="module-7/kite_EX5.html">Assignment 7.2</a>
</li>
<li>
<a href="module-9/kite_EX6.html">Assignment 9.2</a>
</li>
<li>
<a href="module-11/assignment-11.2.html">Assignment 11.2</a>
</li>
<li>
<a href="module-12/index.html">Assignment 12.3</a>
</li>
</ul>
<h3>Projects</h3>
<ul>
<li>
<a href="https://ryan-kite.github.io/bioSite/" target="_blank">bioSite Project Home Page</a>
</li>
<li>
<a href="https://github.com/ryan-kite" target="_blank">Ryan Kite's GitHub Repository </a>
</li>
<li>
<a href="#">Final Exam</a>
</li>
</ul>
<h4>Important Links</h4>
<ul>
<li>
<a
href="https://validator.w3.org/"
target="_blank"
rel="noopener">W3C HTML Validator
</a>
</li>
<li>
<a
href="http://jigsaw.w3.org/css-validator/"
target="_blank"
rel="noopener">W3C CSS Validator
</a>
</li>
<li>
<a
href="https://www.w3schools.com/html/"
target="_blank"
rel="noopener">HTML Tutorial
</a>
</li>
<li>
<a
href="https://github.com/buwebdev/csd-340"
target="_blank"
rel="noopener">CSD 340’s GitHub Repository
</a>
</li>
<li>
<a
href="https://bruinconnect.bellevue.edu/"
target="_blank"
rel="noopener">BRUIN Connect
</a>
</li>
</ul>
</div>
</body>
</html>