1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | <! DOCTYPE html> < html > < head > < title >TODO supply a title</ title > < meta charset = "UTF-8" > < meta name = "viewport" content = "width=device-width, initial-scale=1.0" > < link rel = "stylesheet" href = "https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css" > </ head > < body > < div class = "container" > < header class = "row bg-info" > < div class = "col-md-12" > < h1 >Cabecera</ h1 > </ div > </ header > < main class = "row" > < aside class = "col-md-3 bg-success" >< h1 >hola</ h1 ></ aside > < section class = "col-md-9" >< h1 >que</ h1 ></ section > </ main > < footer class = "row bg-dark" > < div class = "col-md-12" > < p class = "text-light" >Pie de la página</ p > </ div > </ footer > </ div > </ body > </ html > |