I want to make an app with HTML and Javascript. I am not master at these. So I need a bit of help. The image of the app

Now what I want is when I will click on any place inside orange area the number in middle will increase by 1. How can I do that using javascript. My code is given below:
<html>
<head>
<title>Tabjih</title>
<style>
html,
body,
.container {
height: 100%;
margin: 0;
padding: 0;
}
.container {
display: flex;
align-items: center;
justify-content: center;
background-color: orange;
}
p {
font-size: 200px;
}
</style>
</head>
<body>
<div class="container">
<p id="text">0</p>
</div>
</body>
</html>
Please suggest me javascript code needed to add to this to achieve wht i want.