<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<title>xxxpaul</title>
</head>
<body>
<h1 id="h1" class="some__style">Hello World!</h1>
<button onclick="buttonClick">Press</button>
<script src="js/script.js"></script>
</body>
</html>
html, body{
display: flex;
margin: 0;
padding: 0;
font-size: 14px;
background: #313742;
}
.some__style{
justify-content: center;
vertical-align: middle;
align-self: center
font-size: 34px;
color: #fff;
text-align: center;
}
var h1 = document.getElementById('h1');
var counter = true;
function buttonClick(){
if(counter == true){
h1.innerHTML = "You are gey!";
counter = false;
}
else{
h1.innerHTML = "Hello World!";
counter = true;
}
}