-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (42 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AWS Test Page</title>
</head>
<body>
<h1>Hello Amazon</h1>
<section>
<p>
Welcome to AWS
<br />
Enjoy learning about AWS. Hello this is team work
</p>
</section>
<section class="connectedGithubAws">
<p>
After the connection, we are now able update the S3 from our VS Code via
GitHub. This should save a lot of time.
Enjoy learning about AWS.
Hello this is team work.
17th Feb during unschool we created this beautiful page.
</p>
<p>Hello this is Adriana's test</p>
<button id="myButton">Click Me</button>
<p id="count"></p>
<script>
var count = 0;
var button = document.getElementById("myButton");
var countDisplay = document.getElementById("count");
button.addEventListener("click", function() {
count++;
countDisplay.textContent = count;
button.style.backgroundColor = count % 2 === 0 ? "white" : "red";
button.innerText = 'who clicked me?';
});
document.getElementById("myButton").style.border = "thick solid #0000FF";
</script>
</section>
</body>
</html>