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
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.vscode
.DS_Store
node_modules
.parcel-cache
.parcel-cache
.env
11 changes: 9 additions & 2 deletions coworking_agreement.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,29 @@ Talk through each section with your partner. Add notes on what you discussed and

## Accessibility Needs
*What does each team member need access to in order to succeed and show up the best they can?*
- clear communication, planning what to do when

## Collaboration vs. Individual Work Expectations
*Clarify your collaboration expectations - does your group want to write code together all of the time? Or divide work to do independently, then come together to share accomplishments? What tools and technologies can help your collaboration?*
- some waves together in coworking, we can assess and split up for outside of class times
- time zone difference - should be cool

## Learning Style
*How does each team member learn best in project settings?*
- reading the README
- clear objectives and tasks to complete for follow ups

## Preferred Feedback Style
*How does each team member best receive feedback?*
- verbally and straight up! but in a kind way

## One Team Communication Skill to Improve
*What is a teamwork-related skill you want to work on?*
- setting objectives, clear understanding of waves

## Optional: Other agreements
*Other co-working agreements that were not captured in the above sections.*

## Signatures
______________ _______________
Date: _________
Esmeralda Arreguin-Martinez, Riley Drellishak
Date: 12/3/25
40 changes: 40 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,48 @@
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Rubik&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles/index.css">
<script defer src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script defer src="./src/index.js"></script>
</head>
<body>
<header class="header__header">
<h1>Weather Report</h1>
<span>For the lovely city of
<span id="headerCityName" class="header__city-name"></span></span>
</header>
<section class="temperature__section">
<h2>Temperature</h2>
<div class="temperature__content">
<div class="temperature__controls">
<span id="increaseTempControl">⬆️</span>
<span id="tempValue"></span>
<span id="decreaseTempControl">⬇️</span>
</div>
<button id="currentTempButton">Get Realtime Temperature</button>
</div>
</section>
<section class="sky__section">
<h2>Sky</h2>
<select id="skySelect">
<option>Sunny</option>
<option>Cloudy</option>
<option>Rainy</option>
<option>Snowy</option>
</select>
</section>

<section class="city-name__section">
<h2>City Name</h2>
<input type="text" id="cityNameInput" value="Seattle">
<button id="cityNameReset" class="city-name__reset-btn">Reset</button>
</section>

<section class="garden__section">
<h2>Weather Garden</h2>
<div id="gardenContent" class="garden__content">
<div id="sky"></div>
<div id="landscape"></div>
</div>
</section>
</body>
</html>
Loading