-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (40 loc) · 1.24 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/webstorm-icon-logo.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>WS playground</title>
<link rel="stylesheet" href="/style.css">
</head>
<body>
<header class="logo">
<a href="https://www.jetbrains.com/webstorm/">
<img src="/webstorm-logo.svg" alt="WebStorm logo" width="344"
height="90">
</a>
</header>
<main id="app">
<h1 class="title">
Thank you for trying it out. <br /> Your first project is up and running
now.
</h1>
<section class="counter">
<div class="counter-info">
<p class="counter-text">Counter is</p>
<p class="counter-value" id="counter-value"></p>
</div>
<div class="counter-interaction">
<button id="increaseByOne" type="button">+1</button>
<button id="increaseByTwo" type="button">+2</button>
<button id="decreaseByOne" type="button">-1</button>
<button id="decreaseByTwo" type="button">-2</button>
</div>
</section>
</main>
<footer class="technologies">
<img src="/technologies.svg" alt="List of supported technologies">
</footer>
<script type="module" src="/src/main.js"></script>
</body>
</html>