Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,13 @@
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="container">
<h1>Welcome to My Basic Website</h1>
<img src="https://via.placeholder.com/300x200.png?text=Sample+Image" alt="Sample" />
<img src="sample_img.jpg" alt="Sample" />
<p>This is a very simple static website created using HTML, CSS, and JavaScript. It has an image and some content to get started.</p>
<button id="alertBtn">Click Me</button>

<script src="script.js"></script>
</div>
</body>
</html>
4 changes: 3 additions & 1 deletion styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,6 @@ body {
button:hover {
background-color: #3498db;
}

.container {
text-align: center;
}