code/
challenge1/
index.html
css/style.css
img/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| { | |
| "always_show_minimap_viewport": true, | |
| "binary_file_patterns": | |
| [ | |
| "*.jpg", | |
| "*.jpeg", | |
| "*.png", | |
| "*.gif", | |
| "*.ttf", | |
| "*.tga", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { "keys": ["f5"], "command": "refresh_folder_list" }, | |
| { "keys": ["ctrl+k", "ctrl+r"], "command": "revert"}, | |
| { "keys": ["ctrl+alt+o"], "command": "prompt_open_folder" }, | |
| { "keys": ["ctrl+k", "ctrl+m"], "command": "toggle_menu"}, | |
| { "keys": ["ctrl+k", "ctrl+p"], "command": "toggle_minimap"}, | |
| { "keys": ["ctrl+k", "ctrl+space"], "command": "set_setting", "args": {"setting": "draw_white_space", "value": "all"} }, | |
| { "keys": ["ctrl+k", "ctrl+space", "ctrl+space"], "command": "set_setting", "args": {"setting": "draw_white_space", "value": "none"} }, | |
| { "keys": ["ctrl+0"], "command": "reset_font_size" }, | |
| { "keys": ["ctrl+k", "ctrl+r", "ctrl+8"], "command": "set_setting", "args": {"setting": "rulers", "value": [80]} }, |
Reset CSS (Meyer)
https://www.alsacreations.com/astuce/lire/36-reset-css.html
Styles appliqués par le navigateur
html
<section>
<article>
<h2>un h2</h2>
<p> un paragraph un paragraph un paragraph un paragraph</p>
</article>
<article>
<h2>un h2</h2>
un paragraph
https://openclassrooms.com/courses/qu-est-ce-que-le-responsive-web-design
Problemes:
- SEO
- Temps
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # | |
| # Automatically adds Redmine task reference to every commit message. | |
| # Ex branch: dev-12345 | |
| # Will result in: | |
| # Refs #12345 [rest of commit message] | |
| # | |
| BRANCH_NAME=$(git symbolic-ref --short HEAD) | |
| BRANCH_NAME=$(echo $BRANCH_NAME | sed -e 's/dev-//g') # Remove "dev-" part |
OlderNewer