Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

initial commit #2

Merged
merged 1 commit into from Oct 2, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions contributors/Rodriguez.md
@@ -0,0 +1,5 @@
### Name: Michaella Rodriguez
### Location: Austin, TX, United State
### Occupation: Software Engineer Apprentice
### Bio: I have been in web development for a little over a year. This is my first Hacktoberfest!
### Interests: Coding, reading, plants, cats, drinking coffee, long walks
13 changes: 13 additions & 0 deletions looping/index.html
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<p id="test">\</p>
<script src="index.js"></script>
</body>
</html>
4 changes: 4 additions & 0 deletions looping/index.js
@@ -0,0 +1,4 @@
// will add information about different types of loops in javascript

const test = document.getElementById("test")
test.textContent = "Hello World"