-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
119 lines (116 loc) · 9.62 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="We are an award winning design studio located in the heart of Halden, Norway">
<script src="https://kit.fontawesome.com/8aebfcef07.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="css/styles.css" type="text/css">
<!-- Opengraph metadata -->
<meta property="og:url" content="https://itstud.hiof.no/~kjellmal/webutvikling/webeksamen/about.html">
<meta property="og:type" content="website">
<meta property="og:title" content="About us - Company name">
<meta property="og:description" content="We are an awardwinning design studio located in the heart of Halden, Norway.">
<meta property="og:image" content="https://itstud.hiof.no/~kjellmal/webutvikling/webeksamen/img/x1280/pexels-negative-space-1280.jpg">
<title>About us - Company name</title>
<link rel="icon" type="image/x-icon" href="img/favicon.ico"> <!-- Kode for å legge til favicon er hentet fra W3schools: https://www.w3schools.com/html/html_favicon.asp-->
</head>
<body itemscope itemtype="https://schema.org/LocalBusiness">
<a href="#about" class="skip-link">Skip to main content</a>
<header class="content-center">
<a itemprop="url" href="index.html" class="logo"><img itemprop="logo" src="img/logo1.png" alt="Logo home"></a>
<nav>
<ul class="text-s">
<li><a href="index.html">Home</a></li>
<li><a href="products.html">Products</a></li>
<li><a href="about.html" class="active">About</a></li>
<li><a href="about.html#contact" class="btn-primary btn-m">Contact</a></li>
</ul>
</nav>
</header>
<main id="about">
<section class="page-hero">
<div class="content-center twocol"> <!--Sentrerer innhold etter maksbredden-->
<article class="page-hero-content l-overlay">
<h1 class="heading-s">About our company</h1>
<h2 itemprop="name" class="text-m">Company name</h2>
<p itemprop="description" class="text-m">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam sit amet diam metus. Maecenas aliquam nisl nec ex finibus porta. Aenean est dolor, bibendum vitae vestibulum finibus, porttitor a eros. Fusce vitae lectus aliquam justo rutrum suscipit. Quisque egestas risus urna, quis auctor tortor rhoncus eget. </p>
<a href="#contact" class="btn-primary btn-m">Get in touch with us</a>
</article>
</div>
<picture>
<source srcset="img/x1280/pexels-negative-space-1280.jpg" media="(min-width: 768px)">
<img itemprop="image" src="img/pexels-negative-space.jpg" alt="" class="bg-image"> <!-- Bakgrunnsbilde, pynt-->
</picture>
</section>
<section itemprop="hasOfferCatalog" itemscope itemtype="https://schema.org/OfferCatalog" id="services" class="content-center fourcol">
<h2 class="heading-m">Our services</h2>
<article itemprop="itemListElement" itemscope itemtype="https://schema.org/Service" class="service">
<h3 itemprop="name" class="heading-s">Branding</h3>
<p class="text-m">Lorem ipsum dolor sit amet, consectetur adipiscing elit</p>
<i class="fa-solid fa-users icon-m" aria-hidden="true"></i>
</article>
<article itemprop="itemListElement" itemscope itemtype="https://schema.org/Service" class="service">
<h3 itemprop="name" class="heading-s">Design</h3>
<p class="text-m">Lorem ipsum dolor sit amet, consectetur adipiscing elit</p>
<i class="fa-solid fa-cloud-arrow-up icon-m" aria-hidden="true"></i>
</article>
<article itemprop="itemListElement" itemscope itemtype="https://schema.org/Service" class="service">
<h3 itemprop="name" class="heading-s">Development</h3>
<p class="text-m">Lorem ipsum dolor sit amet, consectetur adipiscing elit</p>
<i class="fa-solid fa-code icon-m" aria-hidden="true"></i>
</article>
<article itemprop="itemListElement" itemscope itemtype="https://schema.org/Service" class="service">
<h3 itemprop="name" class="heading-s">Support</h3>
<p class="text-m">Lorem ipsum dolor sit amet, consectetur adipiscing elit</p>
<i class="fa-solid fa-wifi icon-m" aria-hidden="true"></i>
</article>
</section>
<section id="clients" class="row-wrap bg-yellow">
<h2 class="heading-m">Some of our clients</h2>
<a href="#"><img src="img/logo1.png" alt="Client logo 1" loading="lazy"></a> <!-- Logo/bilde til en viktig kunde som fungerer som link til ekstern side, innhold -->
<a href="#"><img src="img/logo2.png" alt="Client logo 2" loading="lazy"></a>
<a href="#"><img src="img/logo2.png" alt="Cool client logo 3" loading="lazy"></a>
</section>
<section id="contact" class="bg-light" aria-labelledby="contact-header">
<div class="content-center twocol"> <!--Sentrerer innhold etter maksbredden-->
<h2 id="contact-header" class="heading-m">Contact us</h2>
<form>
<h3 class="heading-s">Send us a message</h3>
<label for="c-name" class="text-s">Name</label>
<input type="text" id="c-name" placeholder="Ola Normann">
<label for="c-subject" class="text-s">Email</label>
<input type="text" id="c-subject" placeholder="Something">
<label for="c-message" class="text-s">Message</label>
<textarea id="c-message" placeholder="Message"></textarea>
<input type="submit" value="Send message" class="btn-m btn-primary">
</form>
<article>
<h3 class="heading-s">Contact information</h3>
<p class="text-m">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam sit amet diam metus.</p>
<address itemprop="address" itemscope itemtype="https://schema.org/PostalAddress" class="adr text-m" tabindex="0"><i class="fa-solid fa-location-pin" aria-hidden="true"></i><span itemprop="streetAddress">B.R.A Veien 4 </span>,<span itemprop="postalCode">1757</span><span itemprop="addressLocality">Halden</span></address>
<a href="tel:69608000" class="adr text-m"><i class="fa-solid fa-phone" aria-hidden="true"></i><span itemprop="telephone">69 60 80 00</span></a>
<a href="mailto:[email protected]" class="adr text-m"><i class="fa-solid fa-envelope" aria-hidden="true"></i>[email protected]</a>
</article>
</div>
</section>
<section title="Google maps" id="maps" class="bg-light">
</section>
</main>
<footer class="bg-dark">
<div id="footer-inner" class="content-center"> <!--Sentrerer innhold etter maksbredden-->
<a href="index.html" class="logo"><img src="img/logo1.png" alt="Logo home" loading="lazy"></a><!-- Logo til nettstedet og link til forsiden. En del av innholdet. -->
<p class="text-s">Company © 2023</p>
<a href="https://facebook.com" class="icon-s" aria-label="Facebook page"><i class="fa-brands fa-square-facebook"></i></a>
<a href="https://instagram.com" class="icon-s" aria-label="Intsagram page"><i class="fa-brands fa-square-instagram"></i></a>
<a href="https://linkedin.no" class="icon-s" aria-label="Linkedin page"><i class="fa-brands fa-linkedin"></i></a>
</div>
</footer>
<a href="#" id="toTop" aria-label="Go to top" tabindex="0"><i class="fa-solid fa-arrow-up" aria-hidden="true"></i></a> <!-- Tutorial kode fra W3chools om å implementere back to top knapp, men har forenklet funksjonaliteten litt med å gjøre om knappen til en a tag med en anchor som tar brukeren øverst til den nåværende siden, istedenfor å bruke Javascript. Link: https://www.w3schools.com/howto/howto_js_scroll_to_top.asp -->
<!-- Google maps scrips. Kode fra Google sin dokumentasjon om å embedde Google maps på en webside: https://developers.google.com/maps/documentation/javascript/adding-a-google-map#key-->
<script>(g=>{var h,a,k,p="The Google Maps JavaScript API",c="google",l="importLibrary",q="__ib__",m=document,b=window;b=b[c]||(b[c]={});var d=b.maps||(b.maps={}),r=new Set,e=new URLSearchParams,u=()=>h||(h=new Promise(async(f,n)=>{await (a=m.createElement("script"));e.set("libraries",[...r]+"");for(k in g)e.set(k.replace(/[A-Z]/g,t=>"_"+t[0].toLowerCase()),g[k]);e.set("callback",c+".maps."+q);a.src=`https://maps.${c}apis.com/maps/api/js?`+e;d[q]=f;a.onerror=()=>h=n(Error(p+" could not load."));a.nonce=m.querySelector("script[nonce]")?.nonce||"";m.head.append(a)}));d[l]?console.warn(p+" only loads once. Ignoring:",g):d[l]=(f,...n)=>r.add(f)&&u().then(()=>d[l](f,...n))})
({key: "AIzaSyCvBaWq_SZ4NXXNMQ6eBm1w2xP-mi4FFVM", v: "weekly"});</script>
<script src="js/maps.js"></script>
<script src="js/script.js"></script>
</body>
</html>