-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (83 loc) · 4.58 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
<!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">
<link rel="stylesheet" href="style.css">
<title>Eksamen Webutvikling</title>
</head>
<!-- Body: contains navigation bar and a dropdown menu with navigation for smaller screens -->
<body>
<nav>
<ul class="navbar" id="navbar">
<li class="logoTop"> <a href="./index.html" class="yellowLogo"> <img src="./Images/logogul.png" alt="OSLOMET"></a></li>
<li class="nav-menu">
<ul>
<li><a href="./index.html">HOME</a></li>
<li><a href="./Reflection/index.html">REFLECTION</a></li>
<li><a href="./Accessibility/index.html">ACCESSIBILITY</a></li>
<li><a href="./Tech&Society/index.html">TECHNOLOGY & SOCIETY</a></li>
<li><a href="./Fun/index.html">FUN</a></li>
</ul>
</li>
<!-- Menu code courtesy of https://www.w3schools.com/howto/howto_css_more_button.asp -->
<li class="dropdown">
<figure class="button"> <img src="./Images/Menu.png" alt="Menu"></figure>
<div class="drop-menu">
<a href="./index.html">HOME</a>
<a href="./Reflection/index.html">REFLECTION</a>
<a href="./Accessibility/index.html">ACCESSIBILITY</a>
<a href="./Tech&Society/index.html">TECHNOLOGY & SOCIETY</a>
<a href="./Fun/index.html">FUN</a>
</div>
</li>
<!-- Links: for changing the languge to English or Norwegian -->
<div class="language"><p> <a href="./index.html">EN</a> | <a href="./Norsk/index.html">NO</a></p></div>
</ul>
</nav>
<!-- Header: contains the background image and the welcome text -->
<header class="headerHome">
<div>
<h1>Being a first <br> year student <br> at oslomet</h1>
<h2> <em>A website by first year students</em></h2>
<ul class="links">
<li><a href="#main" class="viewMore">view more</a></li>
<li><a href="#main" class="pil"> <img src="./Images/Pil.png" alt="more"></a></li>
</ul>
</div>
</header>
<!-- Main: contains text with more infromation -->
<main id="main">
<div class="welcome" id="welcome">
<h2><span>Welcome!</span></h2>
<p>
We are seven students from age 19-24 years, who study Computer Engineering at OsloMet and are
now in our 1st year of study. In the subject DATA1200 - Web Development, we have been given
an exam paper to develop a website that is about our experiences as 1st year students.
The website will include:
</p>
<ul>
<li>Transition from <a href="./Reflection/index.html"> pupil to student</a></li>
<li><a href="./Accessibility/index.html">Availability</a> of automatic test</li>
<li><a href="./Tech&Society/index.html">Technology and society</a></li>
<li><a href="./Fun/index.html">“Fun page”</a></li>
</ul>
<p class="oslometLink">Check out OsloMet's website <a href="https://www.oslomet.no/" target="_blank">here</a>!</p>
</div>
</main>
<!-- Footer: contains icons with links to OsloMet's different social media accounts-->
<footer>
<!-- Black logo with link to the top of the page-->
<a href="#navbar"><img src="./Images/logosort.png" class="blackLogo" alt="OSLOMET"></a>
<div class="icons">
<ul>
<li><a href="https://www.facebook.com/groups/studiehverdag.oslomet" target="_blank"> <img src="./Images/Facebook.png" alt="Facebook"></a></li>
<li><a href="https://twitter.com/OsloMet" target="_blank"> <img src="./Images/Twitter.png" alt="Twitter"></a></li>
<li><a href="https://www.instagram.com/oslomet/" target="_blank"> <img src="./Images/Instagram.png" alt="Instagram"></a></li>
</ul>
</div>
<p>Copyright © 2021 Lorem ipsum dolor</p>
</footer>
</body>
</html>