mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-06-28 21:05:36 -04:00
Weather app (#10)
* feat: base class added and api * feat: async method/conversions * feat: added styling and ui * feat: added some colors * feat: project complete
This commit is contained in:
parent
8cc79da6d9
commit
4d2291815a
13 changed files with 5771 additions and 0 deletions
28
weather/src/index.js
Normal file
28
weather/src/index.js
Normal file
|
@ -0,0 +1,28 @@
|
|||
import { MainWebsite } from './components/website';
|
||||
import './style.css';
|
||||
|
||||
const api = 'bd5d23eea5751c12b0ef75344e3df932';
|
||||
const web = new MainWebsite(api);
|
||||
|
||||
function fonts() {
|
||||
let fontLink = document.createElement('link');
|
||||
fontLink.rel = 'preconnect';
|
||||
fontLink.href = 'https://fonts.googleapis.com';
|
||||
|
||||
let fontLinkTwo = document.createElement('link');
|
||||
fontLinkTwo.rel = 'preconnect';
|
||||
fontLinkTwo.href = 'https://fonts.gstatic.com';
|
||||
fontLinkTwo.crossOrigin = true;
|
||||
|
||||
let style = document.createElement('link');
|
||||
style.rel = 'stylesheet';
|
||||
style.href =
|
||||
'https://fonts.googleapis.com/css2?family=Indie+Flower&family=Inter:wght@100..900&display=swap';
|
||||
|
||||
document.head.appendChild(fontLink);
|
||||
document.head.appendChild(fontLinkTwo);
|
||||
document.head.appendChild(style);
|
||||
}
|
||||
|
||||
fonts();
|
||||
document.body.appendChild(web.websiteStructure());
|
Loading…
Add table
Add a link
Reference in a new issue