Depende mucho de como te hicieran la pg web.
Si usaron alguna plataforma tipo joomla o pretashop, desde el panel de control. Que en el caso de joomla se tarda un poco en comprender el amplio funcionamiento. Para entrar ww w . nombre de tu pg web. com/administrator en joomla ( si no recuerdo mal).Pretashop NPI, pero debe ser parecido.
Si usaron flash , NPI
Si la hicieron con PHP, quizás sea la forma más fácil de añadir campos a un CV. Primero copiando y luego modificando:
1º- Abres la pg que quieras modificar con algún editor de pgs web, tipo bluefish.
2º- Buscas la info a copiar .
3º- copias la info que te interesa desde (aquí hay varias opciones , a hacer pruebas toca)
a) <table>
lo que sea
</table>
## estas copiando una tabla entera
b) desde <tr>
lo que sea
hasta </tr>
##copiar fila de una tabla
c) desde <td>
lo que sea
hasta </td>
4º por último editas dentro de "lo que sea" los datos copiados y pones los que te interesen.
un ejemplo, abrimos una pg web con bluefish y nos sale un montón de codigo, dentro de ese código queremos añadir más campos , por ejemplo , copiando y modificando "pharmacy":
*****************************************
............
<table border="0" width="426">
<tr>
<td width="55"><img src="img/iconos/pool.gif" width="40" height="38"></td>
<td width="157"><font size="-1" color="black">Swimming
pool.</font></td>
<td width="48"><img src="img/iconos/beach.gif" width="40" height="37"></td>
<td width="138"><font size="-1" color="black">Beach </font></td>
</tr>
<tr>
<td width="55"><img src="img/iconos/sat.gif" width="40" height="39"></td>
<td width="157"><font size="-1" color="black">Satellite
television.</font></td>
<td width="48"><img src="img/iconos/tenis.gif" width="40" height="38"></td>
<td width="138"><font size="-1" color="black">Tennis </font></td>
</tr>
<tr>
<td width="55"><img src="img/iconos/autorent.gif" width="40" height="39"></td>
<td width="157"><font size="-1" color="black">Rent-a-car,
excursions.</font></td>
<td width="48"><img src="img/iconos/golf01.gif" width="40" height="39"></td>
<td width="138"><font size="-1" color="black">Golf </font></td>
</tr>
<tr>
<td width="55"><img src="img/iconos/fish.gif" width="40" height="39"></td>
<td width="157"><font size="-1" color="black">Fishing </font></td>
<td width="48"><img src="img/iconos/restorant.gif" width="40" height="41"></td>
<td width="138"><font size="-1" color="black">Restaurants</font></td>
</tr>
<tr>
<td width="55"><img src="img/iconos/shoping.gif" width="40" height="39"></td>
<td width="157"><font size="-1" color="black">Shops ,
supermarkets</font></td>
<td width="48"><img src="img/iconos/airport.gif" width="40" height="39"></td>
<td width="138"><font size="-1" color="black">Airport
Malaga - 35 km.</font></td>
</tr>
<tr>
<td width="55"><img src="img/iconos/ski.gif" width="40" height="39"></td>
<td width="157"><font size="-1" color="black">Ski (Sierra
Nevada) 150 km.</font></td>
<td width="48"><img src="img/iconos/bank.gif" width="40" height="43"></td>
<td width="138"><font size="-1" color="black">Money
exchange.</font></td>
</tr>
<tr>
<td width="55"><img src="img/iconos/iglesia.gif" width="50" height="50"></td>
<td width="157"><font size="-1" color="black">
300 m</font></td>
<td width="48"> <img src="img/iconos/pharmacy.gif" width="40" height="38"></td>
<td width="138"> <font size="-1" color="black">Pharmacy</font></td>
</tr>
<tr>
<td width="55">
<p align="center"> </p>
</td>
</tr>
</table>
..................................
*************************************************
es de suponer que en tu caso solo habrá texto dentro de las celdas.
Para copiar una fila entera,en este caso primero probaría con copiar de <tr> hasta </tr>
<tr>
<td width="55"><img src="img/iconos/iglesia.gif" width="50" height="50"></td>
<td width="157"><font size="-1" color="black">
300 m</font></td>
<td width="48"> <img src="img/iconos/pharmacy.gif" width="40" height="38"></td>
<td width="138"> <font size="-1" color="black">Pharmacy</font></td>
</tr>
<tr>
<td width="55"><img src="img/iconos/iglesia.gif" width="50" height="50"></td>
<td width="157"><font size="-1" color="black">300 m;
</font></td>
<td width="48"> <img src="img/iconos/pharmacy.gif" width="40" height="38"></td>
<td width="138"> <font size="-1" color="black">lo que sea</font></td>
</tr>
y para mas indicaciones,buscas info de PHP o necesitas un IT, yo no lo soy, la crisis me obligó a buscarme la vida y me hice un "copión"
para acceder a tu pg web y copiarla en tu ordenador puedes usar "filezilla", pero necesitaras las claves de acceso.