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
50 changes: 28 additions & 22 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,28 @@
# 📊 Project: Simple API 1

### Goal: Display data returned from an api

### How to submit your code for review:

- Fork and clone this repo
- Create a new branch called answer
- Checkout answer branch
- Push to your fork
- Issue a pull request
- Your pull request description should contain the following:
- (1 to 5 no 3) I completed the challenge
- (1 to 5 no 3) I feel good about my code
- Anything specific on which you want feedback!

Example:
```
I completed the challenge: 5
I feel good about my code: 4
I'm not sure if my constructors are setup cleanly...
```
# ESPN's NBA News API

> View news across the NBA sourced from ESPN.

> <img src="./images/screenshot.png" alt="Screenshot of completed ESPN API App" width="500">

## Table of Contents

1. [Tech Stack](#tech-stack)
1. [Development](#development)
1. [ESPN API](#espn-api)
1. [Notes](#notes)

## Tech Stack

- **HTML**
- **CSS**
- **JavaScript**

## Development

### ESPN API

- No API key required. Open the app in your browser and instantly see recent news from around the NBA!

### Notes

Thanks to @akeaswaran for sharing this API (https://gist.github.com/akeaswaran/b48b02f1c94f873c6655e7129910fc3b)!
Binary file added images/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 25 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="View news across the NBA sourced from ESPN"
/>
<meta name="keywords" content="espn, nba, news" />

<title>NBA News</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<header>
<span id="branding">
<img src="images/logo.png" alt="NBA Logo" />
<h1>NBA News</h1>
</span>
</header>
<section id="container"></section>
<script type="text/javascript" src="main.js"></script>
</body>
</html>
Loading