index.html 1.31 KB
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
    <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;
      }
Alfakhori's avatar
Alfakhori committed
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
      
      /* Style for the logo */
      #logo {
        float: right;
        margin-right: 20px;
        margin-top: 20px;
        width: 100px;
        height: 100px;
      }
      
      /* Style for the footer */
      footer {
        text-align: center;
        margin-top: 50px;
      }
Alfakhori's avatar
Alfakhori committed
34
35
36
37
38
39
      
      /* Style for the email link */
      footer a {
        color: blue;
        text-decoration: none;
      }
Alfakhori's avatar
Alfakhori committed
40
    </style>
GitLab's avatar
GitLab committed
41
42
  </head>
  <body>
Alfakhori's avatar
Alfakhori committed
43
44
45
46
    <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>
Alfakhori's avatar
Alfakhori committed
47
48
    <img src="mylogo.png" alt="My Logo" id="logo">
    <footer>&copy; 2023 HfT Stuttgart. Contact me at <a href="mailto:Muhammad Mlfakhori">muhammad.alfakhori@hft-stuttgart.de</a>.</footer>
GitLab's avatar
GitLab committed
49
50
  </body>
</html>