-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (54 loc) · 2.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>UCSD Colleges Guide</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<script defer src="node_modules/swup/dist/swup.min.js"></script>
<script defer src="script.js"></script>
</head>
<header>
<nav>
<div class="header-nav">
<a href="/ucsdcolleges.github.io/index.html"><img class="logo" src="images/UCSD_logo.png" alt="image of ucsd logo"></a>
</div>
<div class="header-nav">
<ul id="list">
<li><a href="/ucsdcolleges.github.io/revelle.html"> Revelle</a></li>
<li><a href="/ucsdcolleges.github.io/muir.html"> Muir</a></li>
<li><a href="/ucsdcolleges.github.io/marshall.html"> Marshall</a></li>
<li><a href="/ucsdcolleges.github.io/warren.html"> Warren</a></li>
<li><a href="/ucsdcolleges.github.io/roosevelt.html"> Roosevelt</a></li>
<li><a href="/ucsdcolleges.github.io/sixth.html"> Sixth</a></li>
<li><a href="/ucsdcolleges.github.io/seventh.html"> Seventh</a></li>
</ul>
<input type="checkbox" id="check" onclick="openMenu()">
<label for="check" class="checkbtn">
<i class="material-icons" style="font-size: 3rem;"> menu</i>
</label>
</div>
</nav>
</header>
<body>
<main id="swup" class="transition-fade">
<div class="intro">
<h1> UCSD Colleges Guide</h1>
<div class="intro-text">
<p> Welcome and thank you for taking interest in learning more about UCSD. The purpose of this
site is to help guide students in choosing the right college for them, but it can also be used
to simply learn more about the others colleges on campus. The UCSD campus is
composed of 7 colleges: Revelle, John Muir, Thurgood Marshall, Earl Warren, Eleanor
Roosevelt, Sixth, and Seventh College. Each college has its own philosophical focuses and
general education(GE) courses, making it important to choose the right college for your major.
All information presented in from the UCSD website.
Feel free to use the navigation bar at the top to navigate to a specific college.
If you have any questions, comments, or concerns, feel free to email me at [email protected].
</p>
</div>
</div>
</main>
</body>
</html>