Skip to content

Commit 649cabf

Browse files
committed
Initial commit with HTML website
0 parents  commit 649cabf

3 files changed

Lines changed: 26 additions & 0 deletions

File tree

index.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Welcome to Azure</title>
5+
<link rel="stylesheet" href="style.css">
6+
</head>
7+
<body>
8+
<h1>Hello from Azure!</h1>
9+
<button onclick="sayHello()">Click Me</button>
10+
<script src="script.js"></script>
11+
</body>
12+
</html>

script.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
function sayHello() {
2+
alert("Hello from Azure via GitHub Actions!");
3+
}

style.css

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
body {
2+
font-family: sans-serif;
3+
text-align: center;
4+
margin-top: 100px;
5+
}
6+
button {
7+
padding: 10px;
8+
background-color: steelblue;
9+
color: white;
10+
border-radius: 5px;
11+
}

0 commit comments

Comments
 (0)