├── .gitattributes ├── README.md ├── assets ├── css │ └── styles.css ├── images │ └── logo-top-ucamp.png └── js │ └── index.js └── index.html /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Boilerplate-pure-html-css-js 2 | 3 | This repository contain a started project with HTML5, CSS & JS. 4 | -------------------------------------------------------------------------------- /assets/css/styles.css: -------------------------------------------------------------------------------- 1 | * { 2 | font-family: 'Roboto', sans-serif; 3 | } 4 | 5 | .text-blue { 6 | color: #007bff; 7 | } -------------------------------------------------------------------------------- /assets/images/logo-top-ucamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGeek0/boilerplate-pure-html-css-js/b756d8ddc311047ed3fd8aec2fe486c7998ad40f/assets/images/logo-top-ucamp.png -------------------------------------------------------------------------------- /assets/js/index.js: -------------------------------------------------------------------------------- 1 | console.log("Entro index.js"); -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 |