-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsobremi.html
82 lines (75 loc) · 2.23 KB
/
sobremi.html
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Sobre mi</title>
</head>
<body>
<nav>
<a href="/index.html">Index</a>
<a href="/sobremi.html">Sobre mi</a>
</nav>
<header>
<h1>Sobre mi</h1>
<p>
Hola, soy <strong>Umit</strong>, alumno de la clase de HTML, CSS y JS en
<em>TeachT3ch</em>. Vivo en Madrid. Hablo Turco, Inglés y Castellaño.
</p>
<img
width="200px"
src="https://media-exp2.licdn.com/dms/image/D4E35AQEP0zBItBSu-w/profile-framedphoto-shrink_400_400/0/1651587771046?e=1655380800&v=beta&t=dv77TUlJeAZJuf8ukpp9SErNwG9tZ8HPrUNbU42pWMg"
/>
</header>
<section>
<h2>Mi experiencia</h2>
<p>
<br>Soy estudiante de desarallo software desde hace 6 meses. He empezado a
estudiar en diferentes lenguajes de programación</br> como Python y C y ahora
me toca aprender HTML, CSS y Javascript.
<br>Me gusta aprender programación forma autodidacta también. Antes de
empezar a especializarme en un lenguaje programación</br> quiero probar
muchos de ellos para ver cuál me encaja más.
</p>
</section>
<section>
<h2>Mis aficiones</h2>
<ul>
<li>La tecnología</li>
<li>La calistenia y hacer deporte</li>
<li>Viajar</li>
</ul>
</section>
<section>
<h3>Contacta conmigo</h3>
<img
width="100px"
src="https://i.pinimg.com/474x/0b/37/08/0b3708dfbb8f16c4ea3b80b374765159.jpg"
/>
<form>
<div>
<input
type="email"
name="email"
id="email"
placeholder="[email protected]"
/>
</div>
<div><label for="comentario">Escribe un comentario</label></div>
<div>
<textarea
name="comentario"
id="comentario"
placeholder="Escribe por aqui."
rows="5"
cols="100"
></textarea>
</div>
<button type="submit">Enviar</button>
</form>
</section>
<footer>
<p><i>Primer ejercicio del curso TeachT3ch</i></p>
</footer>
</body>
</html>