-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
148 lines (120 loc) · 3.95 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="mainPageStyle2.css">
<title>Champ Tech</title>
</head>
<body class="textMod">
<div class="mainBackground">
<header>
<style scoped>
div {
width: 100%;
padding: 10%;
}
</style>
</header>
<h1>Champlain Computing, A First-Year's Guide</h1>
<h2> Welcome soon to be Champlain College student </h2>
<nav>
<ul>
<li><a href="index.html"><img class="navImages" src="Navigation/homeButton.png" alt="Logo"></a>
</li>
<li><a href="contactInfo.html"><img class="navImages" src="Navigation/contactButton.png" alt="Logo"></a>
</li>
<li id="Item2"><a onmouseover="OpenMenu('Item2Submenu')"><img class="navImages" src="Navigation/menuButton.png" alt="Logo"></a>
<ul id="Item2Submenu" onmouseover="KeepSubmenu()"
onmouseout="CloseMenu()">
<a href="hardware.html"><img class="navImages2" src="Navigation/hardwareButton.png" alt="Logo"></a>
<a href="security.html"><img class="navImages2" src="Navigation/securityButton.png" alt="Logo"></a>
<a href="software.html"><img class="navImages2" src="Navigation/softwareEssentialsButton.png" alt="Logo"></a>
</ul>
</li>
</ul>
</nav>
<img src="Images/ChamplainLogo.jpg" alt="Logo" style=" float:right; margin:0.5em;" class="logo">
<br><br><br><br><br><br><br><br><br>
<div class="bodyBorder">
<div class="bodyInfo">
<p>
It it our goal to make sure you come to Champlain without any worries about what kind of computer
you'll need to succeed here.
</p>
<img src="Images/HomeImg1.jpg" alt="Logo" style="float: right; margin:0.5em;" class="img">
<p>
We will tell you what you need to know in regards to computer security, computer software, and computer
hardware to make sure you feel confident in your computer choice before coming here.
</p>
<div>
</div>
<p>
Everything you need is found on the left of our website under "menu" including a contact page
in case you need to ask us any questions. We sincerely wish you the best of luck in the upcoming
school year and will do whatever we can to help out.
</p>
</div>
</div>
<div class="bodyBorderTwo">
<div class="bodyInfoTwo">
<p>
Security - Here we will cover basic security precautions everyone should take,
and additionally suggest a couple of good paid and free virus protections.
We will also take a look at the utility of some addons.
</p>
<img src="Images/HomeImg2.jpg" alt="Logo" style="float: right; margin:0.5em;" class="img">
<p>
Software Essentials - We will cover in-depth the pro’s and con’s of several common software used by
students. This will also include some essential software depending on your major.
</p>
<div>
</div>
<p>
Hardware - We will breakdown recommended hardware by price, size, and major to provide you
with an in depth comparison of several computer types.
</p>
</div>
</div>
</div>
<footer>
@copyright Brian and Damon
</footer>
<script>
var Item;
var Timer;
document.onclick=CloseMenu;
function OpenMenu(Menu)
{
if(Item)
{
Item.style.visibility="hidden";
}
Item=document.getElementById(Menu);
Item.style.visibility="visible";
}
function CloseMenu()
{
Timer = window.setTimeout(PerformClose, 500);
}
function PerformClose()
{
if(Item)
{
Item.style.visibility="hidden";
}
}
function KeepSubmenu()
{
window.clearTimeout(Timer);
}
</script>
<p>
<a href="http://jigsaw.w3.org/css-validator/check/referer">
<img style="border:0;width:88px;height:31px"
src="http://jigsaw.w3.org/css-validator/images/vcss"
alt="Valid CSS!" />
</a>
</p>
</body>
</html>