Skip to content

Commit

Permalink
Add initial files for GitHub Pages
Browse files Browse the repository at this point in the history
  • Loading branch information
vtsachev committed Apr 19, 2024
0 parents commit b87ec4a
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
8 changes: 8 additions & 0 deletions css/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
body {
font-family: Arial, sans-serif;
text-align: center;
}

h1 {
color: #333;
}
15 changes: 15 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My GitHub Pages Website</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<h1>Welcome to my website!</h1>
<p>This is a basic test page hosted on GitHub Pages.</p>

<script src="js/script.js"></script>
</body>
</html>
1 change: 1 addition & 0 deletions js/script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
console.log("Hello from GitHub Pages!");

0 comments on commit b87ec4a

Please sign in to comment.