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’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/html.index basic html #389

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
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
39 changes: 39 additions & 0 deletions docs/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@

## Checklist:

Neccesary checkmarks:

[] All Tests are Passing

Type of change

[] New feature
[] Bug Fix

Implements/Fixes:

description closes #

Check the correct boxes

[] This broke nothing
[] This broke some stuff
[] This broke everything

Testing Changes

[] No Tests have been changed
[] Some Tests have been changed
[] All of the Tests have been changed(Please describe what in the world happened)

Checklist:

[] My code has no unused/commented out code
[] I have reviewed my code
[] I have commented my code, particularly in hard-to-understand areas
[] I have fully tested my code
[] I have added one or more people as "Reviewers" to review & merge

(For Fun!)Please Include a link to a gif of your feelings about this branch

Link:
66 changes: 66 additions & 0 deletions src/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
<!DOCTYPE html>
<html>

<head>
<meta charset="UTF-8">
<title>Fitlit</title>
</head>

<body>
<header>
<img src="./images/turing-logo.png" alt="turing logo" height="100px" width="100px">
<h1>Activity Tracker</h1>
</header>
<article>
<img class="main-icon">
<h3 class="user-name js-user-name">First Name</h3>
<p class="user-info js-user-info"></p>
</article>
<!-- activity -->
<article class="card activity">
<section>
<div>
<img class="icon">
<h2 class="card-title">activity</h2>
</div>
<p class="card-info js-card-info"></p>
</section>
<section>
<p class="card-info js-card-info"></p>
<p class="card-info js-card-info"></p>
</section>
</article>
<!-- hydration -->
<article class="card hydration">
<section>
<div>
<img class="icon">
<h2 class="card-title">hydration</h2>
</div>
<p class="card-info js-card-info"></p>
</section>
<section>
<p class="card-info js-card-info"></p>
<p class="card-info js-card-info"></p>
</section>
</article>
<!-- sleep -->
<article class="card sleep">
<section>
<div>
<img class="icon">
<h2 class="card-title">sleep</h2>
</div>
<p class="card-info js-card-info"></p>
</section>
<section>
<p class="card-info js-card-info"></p>
<p class="card-info js-card-info"></p>
</section>
</article>
<!-- Do not include the scripts.js file here - it is done automatically by the webpack server -->
<script src="bundle.js"></script>

</body>

</html>