Skip to content

Commit

Permalink
Initial commit with static website
Browse files Browse the repository at this point in the history
  • Loading branch information
xaos613 committed Dec 31, 2024
1 parent 0bbc1d0 commit bcc6b9f
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
14 changes: 14 additions & 0 deletions my-static-website/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Static Website</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Welcome to My Static Website!</h1>
<p>This website is automatically deployed using GitHub Actions.</p>
<script src="script.js"></script>
</body>
</html>
16 changes: 16 additions & 0 deletions my-static-website/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}

h1 {
text-align: center;
margin-top: 50px;
}

p {
text-align: center;
font-size: 18px;
}

0 comments on commit bcc6b9f

Please sign in to comment.