-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteste.html
More file actions
140 lines (105 loc) · 3.58 KB
/
Copy pathteste.html
File metadata and controls
140 lines (105 loc) · 3.58 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>João</title>
</head>
<body>
<header>
<h1>João</h1>
<nav>
<ul>
<li><a href="#sobre">sobre mim</a></li>
<li><a href="#projeto">projetos</a></li>
<li><a href="#contato">contato</a></li>
</ul>
</nav>
</header>
<section id="sobre">
<h2>Sobre mim</h2>
<img src="https://i.pinimg.com/236x/f4/45/ee/f445ee55c9567e02825aef97f0158c2c.jpg" alt="imagem do aatrox" title="imagem do aatrox lol">
<article>
<p>
Olá, eu sou João e estou textando essas opções em html
</p>
</article>
<aside>
<h3>Habilidades</h3>
<ul>
<li>html</li>
<li>css</li>
<li>JavaScript</li>
</ul>
</aside>
</section>
<section id="projeto">
<h2>Projetos</h2>
<article>
<h3>Portifólio</h3>
<p>
este foi o primeiro que estou desenvolvendo
</p>
</article>
</section>
<section id="habilidade">
<h2>habilidades e tecnologia</h2>
<table>
<thead>
<tr>
<th> tecnologia</th>
<th>nivel</th>
<th>descrição</th>
</tr>
</thead>
<tbody>
<tr>
<td>html</td>
<td>iniciante</td>
<td>capaz de construir estruturas de páginas web semânticas e responsivas</td>
</tr>
<tr>
<td>css</td>
<td>iniciante</td>
<td>experiência com flexbox, grid e animações CSS</td>
</tr>
<tr>
<td>JS</td>
<td>básico</td>
<td>desenvolvimento de scripts do lado do cliente para interações</td>
</tr>
</tbody>
</table>
</section>
<footer>
<p>
direitos reservados a joão
</p>
<section id="contato">
<h2>Contato</h2>
<p>tem um projeto em mente? Entre em ccontato</p>
<form action="">
<label for="nome">nome:</label>
<input type="text" id="nome" name="nome" required> <br>
<label for="email">email:</label>
<input type="email" id="email" name="email" required> <br>
<label for="telefone">telefone:</label>
<input type="tel" id="telefone" name="telefone"> <br>
<label for="assunto">assunto</label>
<select name="assunto" id="assunto">
<option value="orcamento">orçamernto</option>
<option value="duvida">duvida</option>
<option value="outro">outro</option>
</select>
<br>
<label for="mensagem">mensagem</label>
<textarea name="mensagem" id="mensagem" cols="20" rows="5"></textarea>
<br>
<input type="checkbox" id="inscricao" name="inscricao">
<label for="inscricao">deseja receber minha newsletter? fique por dentro</label>
<br>
<input type="submit" value="enviar mensagem">
</form>
</section>
</footer>
</body>
</html>