## Culture et enjeux du numérique #### Séance 2
[nicocti.github.io/culturenum](https://nicocti.github.io/culturenum)
### HTTP
![http](assets/images/http-dns-2.png)
### HTML
                        
        <!DOCTYPE html>

        <html lang="fr">

            <head>
                Une page web
            </head>
            <body>
                Hello world !
            </body>

        </html>
                        
                    
### CSS

        body {
            margin: 0;
            font-family: Arial, Helvetica, sans-serif;
            color: white;
            background-color: black;
        }
                        
### Langage compilé ### Langage interprété
# C

        #include <stdio.h>

        int main(void) {
            printf("Hello world !\n");
        }