-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (46 loc) · 1.5 KB
/
Copy pathindex.html
File metadata and controls
48 lines (46 loc) · 1.5 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
<!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">
<!-- CSS Calling -->
<link rel="stylesheet" href="style.css" />
<!-- JS calling -->
<script src="script.js"></script>
<title>JonSzeCR</title>
</head>
<body>
<div class="grid-container">
<div class="header">
<h2>Welcome to Class CSC102</h2>
<br>
<br>
</div>
<!-- div is colum left -->
<div class="left">
<!-- Image for uat objective in has onclick function -->
<img class="imgLandingPage" id="uat" src="uat.png" onclick="uatlandpage()"/>
<h3>NETWORK SECURITY DEGREE OBJECTIVES</h3>
<h3>Click on Image</h3>
</div>
<!-- div for middle -->
<div class="middle">
<!-- Image for blassoff project in has onclick function -->
<img class="imgLandingPage" id="uatspace" src="uatspace.jpg" onclick="blastoff()"/>
<h3>UAT BLASSOFF</h3>
<h3>Click on Image</h3>
</div>
<!-- div for right -->
<div class="right">
<!-- Image for feedback in has onclick function -->
<img class="imgLandingPage" id="feedback" src="feedback.jpg" onclick="feedback()"/>
<h3>FEEDBACK</h3>
<h3>Click on Image</h3>
</div>
<div class="footer">
<p></p>
</div>
</div>
</body>
</html>