En esta sección se resolverán temas de diseño gráfico, como uso de herramientas como photoshop, illustrator, herramientas para prototipado, herramientas de diseño web, entre otros.
Moderator: julianmartinez16
-
Juan Camilo Rios
- Posts: 3
- Joined: Mon Jan 16, 2017 2:20 pm
Post
by Juan Camilo Rios » Wed Mar 29, 2017 2:55 am
Wireframe manual
Wireframe digital
Final

gif (?)

Html
Code: Select all
<html>
<head>
<title>ESPN Tenis</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<!-- Save for Web Slices (Sin título-1) -->
<table id="Tabla_01" width="1024" height="1324" border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
<img src="images/boletin_01.gif" alt="" usemap="#Map" />
<map name="Map" id="Map">
<area alt="" title="" href="http://espni.go.com/player/welcome/latam/index.htm" shape="rect" coords="59,415,275,469" />
</map>
</tr>
<tr>
<td>
<img src="images/boletin_02.png" alt="" usemap="#Map2" />
<map name="Map2" id="Map2">
<area alt="" title="" href="http://www.ausopen.com/index.html" shape="rect" coords="1,0,255,255" />
<area alt="" title="" href="http://www.rolandgarros.com/en_FR/index.html" shape="rect" coords="513,0,257,254" />
<area alt="" title="" href="http://www.wimbledon.com/index.html" shape="rect" coords="769,0,514,254" />
<area alt="" title="" href="http://www.usopen.org/index.html" shape="rect" coords="770,254,1023,1" />
</map>
</tr>
<tr>
<td>
<img src="images/boletin_03.png" width="1024" height="235" alt=""></td>
</tr>
<tr>
<td>
<img src="images/boletin_04.png" alt="" usemap="#Map3" />
<map name="Map3" id="Map3">
<area alt="" title="" href="https://www.youtube.com/user/ESPN?hl=es-419&gl=CO" shape="rect" coords="809,20,850,53" />
<area alt="" title="" href="https://twitter.com/espn?lang=es" shape="rect" coords="867,54,914,18" />
<area alt="" title="" href="https://www.facebook.com/ESPN/" shape="rect" coords="934,54,980,16" />
</map>
</tr>
</table>
<!-- End Save for Web Slices -->
</body>
</html>
Tabla de posiciones

Html
Code: Select all
<!DOCTYPE html>
<html>
<head>
<title>Tabla de posiciones</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body>
<table>
<tr class="titulos">
<td>POS</td>
<td>Equipo</td>
<td>PT</td>
<td>PJ</td>
<td>PG</td>
<td>PE</td>
<td>PP</td>
<td>DG</td>
</tr>
<tr>
<td>1</td>
<td><img src="img/1.png"> Athletic Bilbao</td>
<td>23</td>
<td>22</td>
<td>23</td>
<td>24</td>
<td>25</td>
<td>26</td>
</tr>
</tr>
<tr>
<td>2</td>
<td><img src="img/2.png"> Espanyol</td>
<td>21</td>
<td>22</td>
<td>23</td>
<td>24</td>
<td>25</td>
<td>26</td>
</tr>
<tr>
<td>3</td>
<td><img src="img/3.png"> Atletico de Madrid</td>
<td>21</td>
<td>22</td>
<td>23</td>
<td>24</td>
<td>25</td>
<td>26</td>
</tr>
<tr>
<td>4</td>
<td><img src="img/4.png"> Celta de Vigo </td>
<td>21</td>
<td>22</td>
<td>23</td>
<td>24</td>
<td>25</td>
<td>26</td>
</tr>
<tr>
<td>5</td>
<td><img src="img/5.png"> Barcelona</td>
<td>21</td>
<td>22</td>
<td>23</td>
<td>24</td>
<td>25</td>
<td>26</td>
</tr>
<tr>
<td>6</td>
<td><img src="img/6.png"> Real Sociedad</td>
<td>21</td>
<td>22</td>
<td>23</td>
<td>24</td>
<td>25</td>
<td>26</td>
</tr>
<tr>
<td>7</td>
<td><img src="img/7.png"> Monaco</td>
<td>21</td>
<td>22</td>
<td>23</td>
<td>24</td>
<td>25</td>
<td>26</td>
</tr>
<tr>
<td>8</td>
<td><img src="img/8.png"> Aston Villa</td>
<td>21</td>
<td>22</td>
<td>23</td>
<td>24</td>
<td>25</td>
<td>26</td>
</tr>
<tr>
<td>9</td>
<td><img src="img/9.png"> Newcastle United</td>
<td>21</td>
<td>22</td>
<td>23</td>
<td>24</td>
<td>25</td>
<td>26</td>
</tr>
<tr>
<td>10</td>
<td><img src="img/10.png"> Chelsea</td>
<td>21</td>
<td>22</td>
<td>23</td>
<td>24</td>
<td>25</td>
<td>26</td>
</tr>
</tr>
</table>
</body>
</html>

Css
Code: Select all
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}
td, th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: #dddddd;
}
.titulos{
color: white;
background-color: #38003D;
}
http://www.jcrioso.com/tareas/
http://www.jcrioso.com/boletin/ 
-
daniel.mg
- Posts: 3
- Joined: Mon Jan 16, 2017 2:19 pm
Post
by daniel.mg » Wed Mar 29, 2017 7:24 am
WireFrame manual NewsLetter
Wireframe digital NewsLetter
Captura de Pantalla de NewsLetter
Gif de NewsLetter
Código HTML NewsLetter
Code: Select all
<html>
<head>
<title>Spider-Man</title>
<!DOCTYPE html>
<html>
<head>
<title>Spider-Man</title>
</head>
<body>
<table id="Tabla_01" width="760" height="1708" border="0" cellpadding="0" cellspacing="0">
<tr>
<td colspan="2">
<img src="http://www.kadejo.com/boletin/img/man_01.gif" width="760" height="372" alt=""></td>
</tr>
<tr>
<td>
<img src="http://www.kadejo.com/boletin/img/man_02.png" width="380" height="452" alt=""></td>
<td>
<img src="http://www.kadejo.com/boletin/img/man_03.png" alt="" usemap="#Map1" />
<map name="Map1" id="Map1">
<area alt="" title="" href="https://es.wikipedia.org/wiki/Stan_Lee" shape="rect" coords="27,389,143,417" />
</map>
</tr>
<tr>
<td>
<img src="http://www.kadejo.com/boletin/img/man_04.png" width="380" height="466" alt=""></td>
<td>
<img src="http://www.kadejo.com/boletin/img/man_05.png" alt="" usemap="#Map2" />
<map name="Map2" id="Map2">
<area alt="" title="" href="https://www.youtube.com/watch?v=39udgGPyYMg" shape="rect" coords="28,342,143,373" />
</map>
</tr>
<tr>
<td colspan="2">
<img src="http://www.kadejo.com/boletin/img/man_06.png" alt="" usemap="#Map" />
<map name="Map" id="Map">
<area alt="" title="" href="https://es.wikipedia.org/wiki/Versiones_alternativas_de_Spider-Man" shape="rect" coords="23,255,662,311" />
<area alt="" title="" href="http://marvel.com/" shape="rect" coords="336,352,426,392" />
</map>
</tr>
</table>
</body>
</html>
Link a NewsLetter:
http://www.kadejo.com/boletin/
_______________________________________________________________________________________________
Captura de Pantalla de Tabla de posiciones
Código HTML
Code: Select all
<!DOCTYPE html>
<html>
<head>
<title>Lista de posiciones</title>
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body>
<table>
<tr class="c">
<td>POS</td>
<td>Equipo</td>
<td>PT</td>
<td>PJ</td>
<td>PG</td>
<td>PE</td>
<td>PP</td>
<td>DG</td>
</tr>
<tr class="b">
<td>1</td>
<td><img src="img/Athletic-Bilbao-icon.png"> Atlético Bilbao
</td>
<td class="pts">7</td>
<td>8</td>
<td>6</td>
<td>3</td>
<td>6</td>
<td>9</td>
</tr>
<tr class="a">
<td>2</td>
<td><img src="img/Atletico-Madrid-icon.png"> Atlético Madrid
</td>
<td class="pts">5</td>
<td>3</td>
<td>9</td>
<td>4</td>
<td>7</td>
<td>2</td>
</tr>
<tr class="b">
<td>3</td>
<td><img src="img/Celta-de-Vigo-icon.png"> Celta de Vigo
</td>
<td class="pts">6</td>
<td>7</td>
<td>3</td>
<td>7</td>
<td>1</td>
<td>9</td>
</tr>
<tr class="a">
<td>4</td>
<td><img src="img/Deportivo-Alaves-icon.png"> Deportico Alaves
</td>
<td class="pts">5</td>
<td>2</td>
<td>5</td>
<td>8</td>
<td>3</td>
<td>7</td>
</tr>
<tr class="b">
<td>5</td>
<td><img src="img/Espanyol-icon.png"> Espanyol
</td>
<td class="pts">2</td>
<td>6</td>
<td>4</td>
<td>9</td>
<td>4</td>
<td>5</td>
</tr>
<tr class="a">
<td>6</td>
<td><img src="img/FC-Barcelona-icon.png"> FC Barcelona
</td>
<td class="pts">6</td>
<td>2</td>
<td>1</td>
<td>6</td>
<td>5</td>
<td>4</td>
</tr>
<tr class="b">
<td>7</td>
<td><img src="img/Rayo-Vallecano-icon.png"> Rayo Vallecano
</td>
<td class="pts">6</td>
<td>4</td>
<td>5</td>
<td>2</td>
<td>7</td>
<td>6</td>
</tr>
<tr class="a">
<td>8</td>
<td><img src="img/Real-Madrid-icon.png"> Real Madrid
</td>
<td class="pts">5</td>
<td>3</td>
<td>7</td>
<td>6</td>
<td>3</td>
<td>4</td>
</tr>
<tr class="b">
<td>9</td>
<td><img src="img/Real-Zaragoza-icon.png"> Real Zaragoza
</td>
<td class="pts">6</td>
<td>3</td>
<td>7</td>
<td>2</td>
<td>6</td>
<td>6</td>
</tr>
<tr class="a">
<td>10</td>
<td><img src="img/Villareal-icon.png"> Villareal
</td>
<td class="pts">7</td>
<td>5</td>
<td>6</td>
<td>8</td>
<td>7</td>
<td>0</td>
</tr>
</table>
</body>
</html>
Código CSS
Code: Select all
table{
width: 100%;
font-family: sans-serif;
border-collapse: collapse;
}
td{
border: 2px solid #dddddd;
text-align: left;
padding: 6px;
font-family: arial, sans-serif;
}
tr{
vertical-align: center;
}
tr:nth-child(even){
background-color: #dddddd;
}
.c {
font-weight: bold;
position: static;
background-color: black;
color: white;
}
.a:hover{
color: #FF3845
}
.b:hover{
color: #FF3845
}
.pts{
font-weight: bold;
}
Enlace Tabla de Posiciones
http://www.kadejo.com/tareas/tarea_04/index.html
_______________________________________________________________________________________________
Enlace a todas las tareas:
http://www.kadejo.com/tareas/
-
franuribe
- Posts: 1
- Joined: Wed Mar 29, 2017 2:01 am
Post
by franuribe » Wed Mar 29, 2017 10:57 am
Wireframe manual
http://imgur.com/a/AMPvx
Wireframe digital
http://imgur.com/a/U5QFg
Boletín
Link del Boletín
https://francisco-uribe.000webhostapp.com/mailing/
Código por recortes de PS
Code: Select all
<html>
<head>
<title>newsletter</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<!-- Save for Web Slices (newsletter.psd) -->
<table id="Tabla_01" width="961" height="5715" border="0" cellpadding="0" cellspacing="0">
<tr>
<td colspan="8">
<img src="imágenes/newsletter_01.gif" width="960" height="719" alt=""></td>
<td>
<img src="imágenes/espacio.gif" width="1" height="719" alt=""></td>
</tr>
<tr>
<td colspan="8">
<img src="imágenes/newsletter_02.gif" width="960" height="315" alt=""></td>
<td>
<img src="imágenes/espacio.gif" width="1" height="315" alt=""></td>
</tr>
<tr>
<td colspan="8">
<a href="https://secure.alexanderwang.com/countries/index">
<img src="imágenes/buy-now.gif" width="960" height="688" border="0" alt=""></a></td>
<td>
<img src="imágenes/espacio.gif" width="1" height="688" alt=""></td>
</tr>
<tr>
<td colspan="8">
<img src="imágenes/newsletter_04.gif" width="960" height="392" alt=""></td>
<td>
<img src="imágenes/espacio.gif" width="1" height="392" alt=""></td>
</tr>
<tr>
<td colspan="6">
<a href="https://secure.alexanderwang.com/countries/index">
<img src="imágenes/img2.gif" width="561" height="696" border="0" alt=""></a></td>
<td colspan="2">
<img src="imágenes/newsletter_06.gif" width="399" height="696" alt=""></td>
<td>
<img src="imágenes/espacio.gif" width="1" height="696" alt=""></td>
</tr>
<tr>
<td colspan="3">
<img src="imágenes/newsletter_07.gif" width="414" height="139" alt=""></td>
<td colspan="5" rowspan="3">
<a href="https://secure.alexanderwang.com/countries/index">
<img src="imágenes/img1.gif" width="546" height="812" border="0" alt=""></a></td>
<td>
<img src="imágenes/espacio.gif" width="1" height="139" alt=""></td>
</tr>
<tr>
<td colspan="3">
<img src="imágenes/newsletter_09.gif" width="414" height="331" alt=""></td>
<td>
<img src="imágenes/espacio.gif" width="1" height="331" alt=""></td>
</tr>
<tr>
<td colspan="3" rowspan="2">
<img src="imágenes/newsletter_10.gif" width="414" height="503" alt=""></td>
<td>
<img src="imágenes/espacio.gif" width="1" height="342" alt=""></td>
</tr>
<tr>
<td colspan="5">
<img src="imágenes/newsletter_11.gif" width="546" height="161" alt=""></td>
<td>
<img src="imágenes/espacio.gif" width="1" height="161" alt=""></td>
</tr>
<tr>
<td>
<img src="imágenes/newsletter_12.gif" width="304" height="991" alt=""></td>
<td colspan="7">
<a href="https://secure.alexanderwang.com/countries/index">
<img src="imágenes/img3.gif" width="656" height="991" border="0" alt=""></a></td>
<td>
<img src="imágenes/espacio.gif" width="1" height="991" alt=""></td>
</tr>
<tr>
<td colspan="8">
<img src="imágenes/newsletter_14.gif" width="960" height="246" alt=""></td>
<td>
<img src="imágenes/espacio.gif" width="1" height="246" alt=""></td>
</tr>
<tr>
<td colspan="8">
<img src="imágenes/newsletter_15.gif" width="960" height="80" alt=""></td>
<td>
<img src="imágenes/espacio.gif" width="1" height="80" alt=""></td>
</tr>
<tr>
<td colspan="8">
<a href="https://secure.alexanderwang.com/countries/index">
<img src="imágenes/imgs4.gif" width="960" height="468" border="0" alt=""></a></td>
<td>
<img src="imágenes/espacio.gif" width="1" height="468" alt=""></td>
</tr>
<tr>
<td colspan="2">
<img src="imágenes/newsletter_17.gif" width="364" height="146" alt=""></td>
<td colspan="2">
<a href="http://www.facebook.com">
<img src="imágenes/facebook.gif" width="109" height="146" border="0" alt=""></a></td>
<td>
<img src="imágenes/newsletter_19.gif" width="31" height="146" alt=""></td>
<td colspan="2">
<a href="http://www.instagram.com">
<img src="imágenes/instagram.gif" width="105" height="146" border="0" alt=""></a></td>
<td>
<img src="imágenes/newsletter_21.gif" width="351" height="146" alt=""></td>
<td>
<img src="imágenes/espacio.gif" width="1" height="146" alt=""></td>
</tr>
<tr>
<td>
<img src="imágenes/espacio.gif" width="304" height="1" alt=""></td>
<td>
<img src="imágenes/espacio.gif" width="60" height="1" alt=""></td>
<td>
<img src="imágenes/espacio.gif" width="50" height="1" alt=""></td>
<td>
<img src="imágenes/espacio.gif" width="59" height="1" alt=""></td>
<td>
<img src="imágenes/espacio.gif" width="31" height="1" alt=""></td>
<td>
<img src="imágenes/espacio.gif" width="57" height="1" alt=""></td>
<td>
<img src="imágenes/espacio.gif" width="48" height="1" alt=""></td>
<td>
<img src="imágenes/espacio.gif" width="351" height="1" alt=""></td>
<td></td>
</tr>
</table>
<!-- End Save for Web Slices -->
</body>
</html>
Link de tareas
https://francisco-uribe.000webhostapp.com/
-
Paula Durán
- Posts: 1
- Joined: Tue Mar 28, 2017 10:49 pm
Post
by Paula Durán » Wed Mar 29, 2017 11:30 am

Wireframe manual boletín

Wireframe digital boletín

Boletín

Enlace Boletín
http://www.pauladuranb.com/boletin/

Código por recortes de photoshop
Code: Select all
<html>
<head>
<title>newsletter</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<!-- Save for Web Slices (newsletter.psd) -->
<table id="Tabla_01" width="961" height="5715" border="0" cellpadding="0" cellspacing="0">
<tr>
<td colspan="8">
<img src="imágenes/newsletter_01.gif" width="960" height="719" alt=""></td>
<td>
<img src="imágenes/espacio.gif" width="1" height="719" alt=""></td>
</tr>
<tr>
<td colspan="8">
<img src="imágenes/newsletter_02.gif" width="960" height="315" alt=""></td>
<td>
<img src="imágenes/espacio.gif" width="1" height="315" alt=""></td>
</tr>
<tr>
<td colspan="8">
<a href="https://secure.alexanderwang.com/countries/index">
<img src="imágenes/buy-now.gif" width="960" height="688" border="0" alt=""></a></td>
<td>
<img src="imágenes/espacio.gif" width="1" height="688" alt=""></td>
</tr>
<tr>
<td colspan="8">
<img src="imágenes/newsletter_04.gif" width="960" height="392" alt=""></td>
<td>
<img src="imágenes/espacio.gif" width="1" height="392" alt=""></td>
</tr>
<tr>
<td colspan="6">
<a href="https://secure.alexanderwang.com/countries/index">
<img src="imágenes/img2.gif" width="561" height="696" border="0" alt=""></a></td>
<td colspan="2">
<img src="imágenes/newsletter_06.gif" width="399" height="696" alt=""></td>
<td>
<img src="imágenes/espacio.gif" width="1" height="696" alt=""></td>
</tr>
<tr>
<td colspan="3">
<img src="imágenes/newsletter_07.gif" width="414" height="139" alt=""></td>
<td colspan="5" rowspan="3">
<a href="https://secure.alexanderwang.com/countries/index">
<img src="imágenes/img1.gif" width="546" height="812" border="0" alt=""></a></td>
<td>
<img src="imágenes/espacio.gif" width="1" height="139" alt=""></td>
</tr>
<tr>
<td colspan="3">
<img src="imágenes/newsletter_09.gif" width="414" height="331" alt=""></td>
<td>
<img src="imágenes/espacio.gif" width="1" height="331" alt=""></td>
</tr>
<tr>
<td colspan="3" rowspan="2">
<img src="imágenes/newsletter_10.gif" width="414" height="503" alt=""></td>
<td>
<img src="imágenes/espacio.gif" width="1" height="342" alt=""></td>
</tr>
<tr>
<td colspan="5">
<img src="imágenes/newsletter_11.gif" width="546" height="161" alt=""></td>
<td>
<img src="imágenes/espacio.gif" width="1" height="161" alt=""></td>
</tr>
<tr>
<td>
<img src="imágenes/newsletter_12.gif" width="304" height="991" alt=""></td>
<td colspan="7">
<a href="https://secure.alexanderwang.com/countries/index">
<img src="imágenes/img3.gif" width="656" height="991" border="0" alt=""></a></td>
<td>
<img src="imágenes/espacio.gif" width="1" height="991" alt=""></td>
</tr>
<tr>
<td colspan="8">
<img src="imágenes/newsletter_14.gif" width="960" height="246" alt=""></td>
<td>
<img src="imágenes/espacio.gif" width="1" height="246" alt=""></td>
</tr>
<tr>
<td colspan="8">
<img src="imágenes/newsletter_15.gif" width="960" height="80" alt=""></td>
<td>
<img src="imágenes/espacio.gif" width="1" height="80" alt=""></td>
</tr>
<tr>
<td colspan="8">
<a href="https://secure.alexanderwang.com/countries/index">
<img src="imágenes/imgs4.gif" width="960" height="468" border="0" alt=""></a></td>
<td>
<img src="imágenes/espacio.gif" width="1" height="468" alt=""></td>
</tr>
<tr>
<td colspan="2">
<img src="imágenes/newsletter_17.gif" width="364" height="146" alt=""></td>
<td colspan="2">
<a href="http://www.facebook.com">
<img src="imágenes/facebook.gif" width="109" height="146" border="0" alt=""></a></td>
<td>
<img src="imágenes/newsletter_19.gif" width="31" height="146" alt=""></td>
<td colspan="2">
<a href="http://www.instagram.com">
<img src="imágenes/instagram.gif" width="105" height="146" border="0" alt=""></a></td>
<td>
<img src="imágenes/newsletter_21.gif" width="351" height="146" alt=""></td>
<td>
<img src="imágenes/espacio.gif" width="1" height="146" alt=""></td>
</tr>
<tr>
<td>
<img src="imágenes/espacio.gif" width="304" height="1" alt=""></td>
<td>
<img src="imágenes/espacio.gif" width="60" height="1" alt=""></td>
<td>
<img src="imágenes/espacio.gif" width="50" height="1" alt=""></td>
<td>
<img src="imágenes/espacio.gif" width="59" height="1" alt=""></td>
<td>
<img src="imágenes/espacio.gif" width="31" height="1" alt=""></td>
<td>
<img src="imágenes/espacio.gif" width="57" height="1" alt=""></td>
<td>
<img src="imágenes/espacio.gif" width="48" height="1" alt=""></td>
<td>
<img src="imágenes/espacio.gif" width="351" height="1" alt=""></td>
<td></td>
</tr>
</table>
<!-- End Save for Web Slices -->
</body>
</html>

Tabla de posiciones pantallazo

Código html Tabla de posiciones
Code: Select all
<html>
<head>
<title>Tabla de Posiciones</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/main.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700" rel="stylesheet">
</head>
<body>
<table cellpadding="0" cellspacing="0">
<tr id="pos_r">
<td class="posicion2">POS</td>
<td id="equipo_d">EQUIPO</td>
<td class="posicion2">PT</td>
<td class="posicion2">PJ</td>
<td class="posicion2">PG</td>
<td class="posicion2">PE</td>
<td class="posicion2">PP</td>
<td class="posicion2">DG</td>
</tr>
<tr>
<td class="posicion3">1</td>
<td><img src="img/FC-Barcelona-icon.png">FC Barcelona</td>
<td class="posicion4">22</td>
<td class="posicion">10</td>
<td class="posicion">7</td>
<td class="posicion">1</td>
<td class="posicion">2</td>
<td class="posicion">9</td>
</tr>
<tr>
<td class="posicion3">2</td>
<td><img src="img/Real-Madrid-icon.png">Real Madrid</td>
<td class="posicion4">20</td>
<td class="posicion">8</td>
<td class="posicion">6</td>
<td class="posicion">2</td>
<td class="posicion">0</td>
<td class="posicion">14</td>
</tr>
<tr>
<td class="posicion3">3</td>
<td><img src="img/Atletico-Madrid-icon.png">Atlético de Madrid</td>
<td class="posicion4">17</td>
<td class="posicion">10</td>
<td class="posicion">5</td>
<td class="posicion">2</td>
<td class="posicion">3</td>
<td class="posicion">0</td>
</tr>
<tr>
<td class="posicion3">4</td>
<td ><img src="img/Borussia-Dortmund-icon.png">Borussia Dortmund</td>
<td class="posicion4">16</td>
<td class="posicion">9</td>
<td class="posicion">5</td>
<td class="posicion">1</td>
<td class="posicion">3</td>
<td class="posicion">10</td>
</tr>
<tr>
<td class="posicion3">5</td>
<td><img src="img/Arsenal-FC-icon.png">Arsenal FC</td>
<td class="posicion4">16</td>
<td class="posicion">10</td>
<td class="posicion">4</td>
<td class="posicion">4</td>
<td class="posicion">2</td>
<td class="posicion">7</td>
</tr>
<tr>
<td class="posicion3">6</td>
<td><img src="img/Manchester-United-icon.png">Manchester United</td>
<td class="posicion4">16</td>
<td class="posicion">9</td>
<td class="posicion">4</td>
<td class="posicion">4</td>
<td class="posicion">1</td>
<td class="posicion">2</td>
</tr>
<tr>
<td class="posicion3">7</td>
<td><img src="img/Chelsea-FC-icon.png">Chelsea FC</td>
<td class="posicion4">15</td>
<td class="posicion">10</td>
<td class="posicion">4</td>
<td class="posicion">3</td>
<td class="posicion">3</td>
<td class="posicion">4</td>
</tr>
<tr>
<td class="posicion3">8</td>
<td><img src="img/Liverpool-FC-icon.png">Liverpool FC</td>
<td class="posicion4">14</td>
<td class="posicion">10</td>
<td class="posicion">3</td>
<td class="posicion">5</td>
<td class="posicion">2</td>
<td class="posicion">0</td>
</tr>
<tr>
<td class="posicion3">9</td>
<td><img src="img/Paris-Saint-Germain-icon.png">Paris Saint Germain</td>
<td class="posicion4">14</td>
<td class="posicion">10</td>
<td class="posicion">4</td>
<td class="posicion">2</td>
<td class="posicion">4</td>
<td class="posicion">-2</td>
</tr>
<tr>
<td class="posicion3">10</td>
<td><img src="img/Juventus-icon.png">Juventus</td>
<td class="posicion4">12</td>
<td class="posicion">10</td>
<td class="posicion">3</td>
<td class="posicion">3</td>
<td class="posicion">4</td>
<td class="posicion">-1</td>
</tr>
</table>
</body>
</html>

Código Css Tabla de posiciones
Code: Select all
body {
font-family: 'Open Sans', comic Sans;
font-size: 14px;
}
img {
padding-right: 10px;
padding-top: 10px;
padding-left: 10px;
}
#pos_r {
background-color: rgba(100,100,100,1);
font-weight: 700;
height: 30px;
color:black;
border-right: none;
}
tr {
background-color: rgba(200, 200, 200, 0.5);
}
.equipo_d {
padding-right: 700px;
padding-left: 20px;
left: 42px;
}
.posicion {
text-align: center;
width: 60px;
border-left: 2px solid white;
}
.posicion2 {
border-right: 2px solid rgba(120, 120, 120, 0.0);
text-align: center;
width: 60px;
}
.posicion3 {
text-align: center;
width: 60px;
border-right: 2px solid white;
}
.posicion4 {
text-align: center;
width: 60px;
border-left: 2px solid white;
font-weight: 700;
}

Enlace Tareas
http://www.pauladuranb.com/tareas/
-
marcela giraldo
- Posts: 1
- Joined: Fri Jan 20, 2017 12:52 pm
Post
by marcela giraldo » Wed Mar 29, 2017 3:50 pm
Wireframe manual
Wireframe digital boletìn
Boletín
Còdigo recortes photoshop
Code: Select all
<html>
<head>
<title>Untitled-1</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<!-- Save for Web Slices (Untitled-1) -->
<table id="Table_01" width="576" height="1025" border="0" cellpadding="0" cellspacing="0">
<tr>
<td colspan="3">
<img src="images/boletin2_01.png" width="483" height="66" alt=""></td>
<td>
<img src="images/boletin2_02.jpg" width="93" height="66" alt=""></td>
</tr>
<tr>
<td colspan="4">
<img src="images/boletin2_03.png" width="576" height="21" alt=""></td>
</tr>
<tr>
<td colspan="4">
<img src="images/boletin2_04.jpg" width="576" height="578" alt=""></td>
</tr>
<tr>
<td colspan="4">
<img src="images/boletin2_05.jpg" width="576" height="222" alt=""></td>
</tr>
<tr>
<td>
<img src="images/boletin2_06.jpg" width="228" height="36" alt=""></td>
<td>
<a href="http:/www.upb.edu.co" target="_blank">
<img src="images/Untitled-1_07.png" width="94" height="36" border="0" alt=""></a></td>
<td colspan="2">
<img src="images/boletin2_08.jpg" width="254" height="36" alt=""></td>
</tr>
<tr>
<td colspan="4">
<img src="images/boletin2_09.jpg" width="576" height="101" alt=""></td>
</tr>
<tr>
<td>
<img src="images/spacer.gif" width="228" height="1" alt=""></td>
<td>
<img src="images/spacer.gif" width="94" height="1" alt=""></td>
<td>
<img src="images/spacer.gif" width="161" height="1" alt=""></td>
<td>
<img src="images/spacer.gif" width="93" height="1" alt=""></td>
</tr>
</table>
<!-- End Save for Web Slices -->
</body>
</html>
Link Boletin
http://marcelagiraldo.com.co/trabajos/b ... index.html
Tabla de posiciones
Link HTML tabla posiciones
Code: Select all
<!DOCTYPE html>
<html>
<head>
<title>Ejemplo del uso de tablas</title>
<meta charset="utf-8">
<link href="css/main.css" rel="stylesheet">
</head>
<body>
<table>
<tr class="titulos">
<td style="text-align:center;">POS</td>
<td style="text-align:center;">EQUIPO</td>
<td style="text-align:center;">CASA</td>
<td style="text-align:center;">PJ</td>
<td style="text-align:center;">PG</td>
<td style="text-align:center;">PE</td>
<td style="text-align:center;">PP</td>
<td style="text-align:center;">DG</td>
</tr>
<tr>
<td>1</td>
<td style="text-align:center;"><img src="img/Arsenal-FC-icon.png"></td>
<td>Arsenal</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
</tr>
<tr>
<td>2</td>
<td style="text-align:center;"><img src="img/Chelsea-FC-icon.png"></td>
<td>Chelsea</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
</tr>
<tr>
<td>3</td>
<td style="text-align:center;"><img src="img/Atletico-Madrid-icon.png"></td>
<td>Atletico Madrid</td>
<td>5</td>
<td>2</td>
<td>4</td>
<td>1</td>
<td>6</td>
</tr>
<tr>
<td>4</td>
<td style="text-align:center;"><img src="img/FC-Barcelona-icon.png"></td>
<td>Barcelona</td>
<td>3</td>
<td>6</td>
<td>1</td>
<td>0</td>
<td>4</td>
</tr>
<tr>
<td>5</td>
<td style="text-align:center;"><img src="img/Getafe-icon.png"></td>
<td>Getafe</td>
<td>3</td>
<td>2</td>
<td>0</td>
<td>4</td>
<td>9</td>
</tr>
<tr>
<td>6</td>
<td style="text-align:center;"><img src="img/Leicester-City-icon.png"></td>
<td>Leicester</td>
<td>7</td>
<td>4</td>
<td>3</td>
<td>7</td>
<td>1</td>
</tr>
<tr>
<td>7</td>
<td style="text-align:center;"><img src="img/Real-Madrid-icon.png"></td>
<td>Real Madrid</td>
<td>2</td>
<td>7</td>
<td>2</td>
<td>1</td>
<td>5</td>
</tr>
<tr>
<td>8</td>
<td style="text-align:center;"><img src="img/Real-Mallorca-icon.png"></td>
<td>Mallorca</td>
<td>5</td>
<td>1</td>
<td>4</td>
<td>5</td>
<td>3</td>
</tr>
<tr>
<td>9</td>
<td style="text-align:center;"><img src="img/Real-Zaragoza-icon.png"></td>
<td>Zaragoza</td>
<td>7</td>
<td>2</td>
<td>6</td>
<td>1</td>
<td>6</td>
</tr>
<tr>
<td>10</td>
<td style="text-align:center;"><img src="img/Tenerife-icon.png"></td>
<td>Tenerife</td>
<td>5</td>
<td>1</td>
<td>2</td>
<td>4</td>
<td>0</td>
</tr>
</table>
</body>
</html>
Código CSS tabla posiciones
Code: Select all
table {
width: 100%;
border-collapse: collapse;
}
tr:nth-of-type(odd) {
background: #eee;
}
th {
background: #333;
color: white;
font-weight: bold;
}
td, th {
padding: 6px;
border: 1px solid #ccc;
text-align: left;
}
.titulos{
text-align:center
}
Link Trabajos
http://marcelagiraldo.com.co/trabajos/