-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
146 lines (141 loc) · 4.39 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="sv">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<meta name="author" content="Fadi Hanna" />
<meta name="keywords" content="Datahjalp, projekt, hjälp" />
<meta
name="description"
content="Datahjalp projekt hjälper dig att laga dina datorer."
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css"
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link
href="assets/icons/favicon/apple-touch-icon.png"
rel="apple-touch-icon"
sizes="180x180"
/>
<link
type="image/png"
href="assets/icons/favicon/favicon-32x32.png"
rel="icon"
sizes="32x32"
/>
<link
type="image/png"
href="assets/icons/favicon/favicon-16x16.png"
rel="icon"
sizes="16x16"
/>
<link href="assets/icons/favicon/site.webmanifest" rel="manifest" />
<link
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css"
integrity="sha512-NhSC1YmyruXifcj/KFRWoC561YpHpc5Jtzgvbuzx5VozKpWvQ+4nXhPdFgmx8xqexRcpAglTj9sIBWINXa8x5w=="
crossorigin="anonymous"
rel="stylesheet"
/>
<link type="text/css" href="css/main.css" rel="stylesheet" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Datahjälp - Startsida</title>
</head>
<body>
<div id="container">
<header>
<div class="mylogo">
<a href="index.html" title="Länk till logo">
<img
class="logobild"
src="assets/images/logo.jpg"
title="Datahjälp logo"
alt="Sidans logo"
width="600"
height="600"
aria-label="Sidans logo"
loading="lazy"
/>
</a>
</div>
<nav>
<ul id="mainnav">
<li>
<a href="index.html" title="Home">
<i class="fa-solid fa-house"></i>
Startsida</a
>
</li>
<li>
<a href="prices.html" title="Prices">
<i class="fa-solid fa-dollar-sign"></i>
Priser</a
>
</li>
<li>
<a href="competition.html" title="Competition">
<i class="fa-solid fa-sack-dollar"></i>
Tävling</a
>
</li>
<li>
<a href="contact.html" title="Contact">
<i class="fa-solid fa-phone"></i>
Kontakta oss</a
>
</li>
<li>
<a href="about.html" title="About">
<i class="fa-solid fa-user"></i>
Om oss</a
>
</li>
</ul>
</nav>
<hr class="line" />
</header>
<main class="main">
<section class="txt">
<h1 class="myheading">Välkommen till Datahjälp AB</h1>
<br />
<p>Vi tar hand om din dator och ger dig den i bästa skick.</p>
<p>
Vi vill bli en av bästa datareparationsaffär som har mest nöjda
kunder.
</p>
<p>
Kunder recensioner:
<br />
Erik Daniellson: Bästa dataaffär ever.
<br />
Rami Eriksson: Jag är så nöjd. Jag har alltid velat bästa service
innan priser. Det är precis vad datahjälp gör.
<br />
Rania Anders: Jag älskar denna dataaffär.
</p>
</section>
</main>
<hr class="line" />
<footer>
<p class="lead">Datahjälp AB</p>
<address>Adress: Ringvägen 5, Stockholm.</address>
<br />
<p class="lead">
E-postadress:
<a class="footerlink" href="mailto:[email protected]"
>
<br />
Telefonnummer:
<a class="footerlink" href="tel:084751014"> 08-4751014 </a>
<br />
Mobilnummer:
<a class="footerlink" href="tel:0735798048"> 073-5798048 </a>
<br />
</p>
</footer>
</div>
</body>
</html>