index.html 735 Bytes
Newer Older
GitLab's avatar
GitLab committed
1
2
3
<!DOCTYPE html>
<html>
  <head>
Alfakhori's avatar
Alfakhori committed
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
    <title>My Buttons Page</title>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <style>
      /* Style for the buttons */
      button {
        background-color: blue;
        color: white;
        font-size: 24px;
        padding: 12px 24px;
        border: none;
        border-radius: 4px;
        margin: 20px;
        cursor: pointer;
      }
    </style>
GitLab's avatar
GitLab committed
20
21
  </head>
  <body>
Alfakhori's avatar
Alfakhori committed
22
23
24
25
    <h1>Welcome to My Page!</h1>
    <p>Click on one of the buttons below to go to another page:</p>
    <button onclick="location.href='page1.html'">Go to Page 1</button>
    <button onclick="location.href='page2.html'">Go to Page 2</button>
GitLab's avatar
GitLab committed
26
27
  </body>
</html>