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
8 changes: 6 additions & 2 deletions coworking_agreement.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,15 @@ Talk through each section with your partner. Add notes on what you discussed and
## 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?*

Focus on JavaScript, leave CSS for last-- complete if theres bandwidth

## Learning Style
*How does each team member learn best in project settings?*
split waves to learn js better

## Preferred Feedback Style
*How does each team member best receive feedback?*
We can talk through slack if we need to communicate after co-working time.

## One Team Communication Skill to Improve
*What is a teamwork-related skill you want to work on?*
Expand All @@ -21,5 +25,5 @@ Talk through each section with your partner. Add notes on what you discussed and
*Other co-working agreements that were not captured in the above sections.*

## Signatures
______________ _______________
Date: _________
__Li yan_ Bianca Caprirolo_
Date: __2025.12.03_
48 changes: 48 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
Expand All @@ -8,8 +9,55 @@
<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>
<div class="temperature__buttons">
<button id="currentTempButton">Get Realtime Temperature</button>
<button id="temp_conversion_bt">Convert °F ↔ °C</button>
</div>
</div>
</section>
</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