1234567891011121314151617181920212223242526 |
- <?php
- require_once("../../include/constantes.php");
- require_once("../include/charts_util.php");
- ?>
- <html>
- <head>
- <title>GEMA - Facultad de Ingeniería</title>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
- <link rel="stylesheet" href="../../css/bootstrap-ulsa.min.css" type="text/css">
- <link rel="stylesheet" href="../../css/indivisa.css" type="text/css">
- <link rel="stylesheet" href="../../css/sgi.css?rand=<?php echo rand();?>" type="text/css">
- <link rel="stylesheet" href="../../css/fa_all.css" type="text/css">
- </head>
- <body>
- <ul class="list-group list-group-horizontal">
- <?php
- foreach($colorMatFull_arr as $color){
- ?>
- <li class="list-group-item" style="font-size: 200%; color: <?php echo $color;?>"><?php echo $ICO_LG["circulo"];?></li>
- <?php
- }
- ?>
- </ul>
- </body>
- </html>
|