Giter Site home page Giter Site logo

seijno / the-web-is-for-everyone-interactive-functionality Goto Github PK

View Code? Open in Web Editor NEW

This project forked from fdnd-task/the-web-is-for-everyone-interactive-functionality

0.0 0.0 0.0 81 KB

Ontwerp en maak voor een opdrachtgever een interactieve toepassing die voor iedereen toegankelijk is

Home Page: https://scary-bass-jumpsuit.cyclic.app

License: MIT License

JavaScript 29.25% CSS 25.30% EJS 45.45%

the-web-is-for-everyone-interactive-functionality's Introduction

the-web-is-for-everyone-interactive-functionality's People

Contributors

koopreynders avatar seijno avatar joostf avatar ju5tu5 avatar

the-web-is-for-everyone-interactive-functionality's Issues

Inspringers

let op dat de code netjes is. qua tabs en regellijnen

HTML (EJS)

<main>
<form action="/" method="POST">
<ul>
<% sdgs.forEach(sdg => { %>
<li>
<label>
<input class="choose" type="checkbox" name="<%= sdg.title %>" value="<%= sdg.id %>">
<img src="https://fdnd-agency.directus.app/assets/<%= sdg.icon %>" alt="<%= sdg.id %>. <%= sdg.title %>">
</label>
</li>
<% }); %>
</ul>
<input class="submitBtn" type="submit" value="Verder">
</form>
</main>

In jouw project is niet veel HTML te vinden, maar de HTML die er is heeft mooie nesting.

CSS

Binnen je CSS staan de algemene selectoren mooi bovenaan in het bestand. Verder maak je beperkt gebruik van classes, maar als je ze gebruikt staan ze meer onderaan in de specifieke sectie van de code. Ziet er goed uit!

Node & Express

De volgorde van je routes zijn logisch gerangschikt en gegroepeerd. Je hebt eerst je GET-Route en daarna volgt je POST-Route.

Images "avif" geen "avig"

Mijn browser support avif fotos maar deze werken niet op mijn website. Is dit misschien een error in jou code?

Ik zie dat je ?format=avig verkeert gebruikt want het is geen avig maar avif. Probeer dit te verbeteren door dit te gebruiken:

<picture> 
    <source srcset="https://fdnd-agency.directus.app/assets/<%= sdg.icon %>?format=avif" type="image/avif"> 
    <source srcset="https://fdnd-agency.directus.app/assets/<%= sdg.icon %>?format=webp" type="image/webp"> 
    <img src="https://fdnd-agency.directus.app/assets/<%= sdg.icon %>" height="112" width="112" value="<%= sdg.id %>" alt="<%= sdg.title %>"> 
</picture> 

<picture>
<source srcset="https://fdnd-agency.directus.app/assets/<%= sdg.icon %>?format=avig" type="image/avig">
<source srcset="https://fdnd-agency.directus.app/assets/<%= sdg.icon %>?format=webp" type="image/webp">
<img src="https://fdnd-agency.directus.app/assets/<%= sdg.icon %>" height="112" width="112" value="<%= sdg.id %>" alt="<%= sdg.title %>">
</picture>

Er bestaat geen bron voor dit ๐Ÿ˜‚

Meta tag has no description

Door een lighthouse test te doen kwam ik erachter dat je geen meta description had

<meta property="og:description" content="Home">

Locatie van issue

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./style.css">
<title>hand/foot print</title>
<script src="./script.js" defer></script>
</head>

Screenshot 2024-04-26 at 10 43 29

Bron: https://developer.chrome.com/docs/lighthouse/seo/meta-description/?utm_source=lighthouse&utm_medium=devtools

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.