Skip to content

Commit

Permalink
Updated index.html with minor changes to formatting and comments
Browse files Browse the repository at this point in the history
This commit includes the following changes to index.html:

* Added whitespace around some attribute-value pairs in HTML tags
* Moved the closing ">" of
  • Loading branch information
JagGillarVatten committed Apr 18, 2024
1 parent 261bf0c commit fb7dd3d
Showing 1 changed file with 33 additions and 32 deletions.
65 changes: 33 additions & 32 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,52 +2,53 @@
<html lang="sv">

<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Kulturalarm</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Kulturalarm</title>

<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="favicon.ico" />

<div id="day"> </div>
<div id="day"> </div>

<div id="dots">
</div>
<div id="dots">
</div>

<!-- Styles -->
<link rel="preload" href="style.css" as="style" />
<link rel="stylesheet" href="style.css" />
<!-- Styles -->
<link rel="preload" href="style.css" as="style" />
<link rel="stylesheet" href="style.css" />
</head>

<body onload="init()">

<!-- Main Content -->
<div class="name">Kulturalarm</div>
<!-- Main Content -->
<div class="name">Kulturalarm</div>

<div id="countdown">
<div id="countdown-text"></div>
<div id="countdown-number"></div>
</div>
<div id="countdown">
<div id="countdown-text"></div>
<div id="countdown-number"></div>
</div>

<p id="day-of-week"></p>
<p id="day-of-week"></p>

<div class="progress-bar" id="progress-bar">
<span id="progress"></span>
</div>
<div class="progress-bar" id="progress-bar">
<span id="progress"></span>
</div>

<p id="location"></p>
<p id="location"></p>

<!-- Dropdown -->
<div class="dropdown">
<button class="dropdown-button button" title="Byt schema">
Byt schema
</button>
<div class="dropdown-content"></div>
</div>
<!-- Dropdown -->
<div class="dropdown">
<button class="dropdown-button button" title="Byt schema">
Byt schema
</button>
<div class="dropdown-content"></div>
</div>

<!-- Page Visit Count -->
<div id="page-visit-count" style>
Du är besökare nummer <span id="visit-count"></span>!
<!-- Page Visit Count -->
<div id="page-visit-count">
Du är besökare nummer <span id="visit-count"></span>!
</div>

<!-- Scripts -->
<script src="/scripts/events.js"></script>
Expand Down

0 comments on commit fb7dd3d

Please sign in to comment.