-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from amaydixit11/main
modified: style.css
- Loading branch information
Showing
2 changed files
with
80 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,32 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>First Contributors Website</title> | ||
<link rel="stylesheet" href="style.css"> | ||
</head> | ||
<body> | ||
<link rel="stylesheet" href="style.css" /> | ||
</head> | ||
<body> | ||
<header> | ||
<h1>Git Started With Us</h1> | ||
<h1>Git Started With Us</h1> | ||
</header> | ||
|
||
<div id="pixel-art-container"></div> | ||
|
||
<footer> | ||
Made with ♥ by | ||
<a href="https://github.com/OpenLake"> | ||
Openlake | ||
</a> | ||
Made with ♥ by | ||
<a href="https://github.com/OpenLake"> Openlake </a> | ||
</footer> | ||
|
||
<script> | ||
const container = document.getElementById('pixel-art-container'); | ||
const container = document.getElementById("pixel-art-container"); | ||
|
||
for (let i = 0; i < 400; i++) { // 20 x 20 grid | ||
const cell = document.createElement('div'); | ||
cell.classList.add('cell'); | ||
container.appendChild(cell); | ||
} | ||
for (let i = 0; i < 400; i++) { | ||
// 20 x 20 grid | ||
const cell = document.createElement("div"); | ||
cell.classList.add("cell"); | ||
container.appendChild(cell); | ||
} | ||
</script> | ||
|
||
</body> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters