Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
AggieV authored Oct 29, 2023
0 parents commit 6696c60
Show file tree
Hide file tree
Showing 7 changed files with 94 additions and 0 deletions.
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Basiswebsite voor Interface en Interactie
Een mooie basis met mapjes, html, css en js die goed aan elkaar gelinkt zijn.

## dingen om te doen

- Zet GitHub pages aan (bij Settings).
- Plak een link naar je GitHub pages in het About blokje (rechtsboven)
- Maak van je naam in Indeling & Planning excel in Teams een link naar je GitHub repository.

GitHub is gelijk een backup, maar is ook wat picky-er over wat mooie code is:

- Zet je code elke keer als je voortgang hebt geboekt op GitHub (dan heb je een back-up).
- Test je werk op Github (werkt net anders dan op je eigen computer).
- Laat een ander je werk op GitHub testen.

Code is best leuk, zeker als het lukt:

- Stel vragen als je er naar zelf proberen en zoeken niet uitkomt.
- Wacht daar niet te lang (en we helpen je graag verder).
Binary file added fonts/eenfont.woff
Binary file not shown.
Binary file added fonts/eenfont.woff2
Binary file not shown.
Binary file added images/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
23 changes: 23 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="nl">

<head>
<meta charset="UTF-8">
<meta name="author" content="jouw naam">
<meta name="viewport" content="width=device-width, initial-scale=1">

<title>VIDii 2023/24 - Tijdlijn</title>

<link href="styles/style.css" rel="stylesheet">
<link rel="icon" type="image/png+xml" href="images/favicon.png">
</head>

<body>
<h1>Howdy I&I</h1>



<script src="scripts/script.js"></script>
</body>

</html>
2 changes: 2 additions & 0 deletions scripts/script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
// JavaScript Document
console.log("Howdy!");
50 changes: 50 additions & 0 deletions styles/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
/**************/
/* CSS REMEDY */
/**************/

/* naar een idee van Jen Simmons */
*, *::after, *::before {
box-sizing:border-box;
}

body {
margin:0;
}

button:not([disabled]) {
cursor:pointer;
}

img {
max-width:100%;
}





/*********************/
/* CUSTOM PROPERTIES */
/*********************/

:root {
--color-headings:crimson
/* ... */

}





/********************/
/* ALGEMENE STYLING */
/********************/

h1 {
color:var(--color-headings);
}

/* ... */


0 comments on commit 6696c60

Please sign in to comment.