-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
121 lines (117 loc) · 5.38 KB
/
index.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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Minha página</title>
</head>
<body>
<header>
<h1>JONATHAN OLIVEIRA</h1>
<section class="nav-items">
<a href=#home>Home</a> <a href=#sobre>Sobre</a> <a href=#form_contato>Formulário</a>
</section>
</header>
<section id="home">
<div class="container">
<div class="column-left">
<h1>Só projetos incríveis</h1>
<p>
Entre em contato pelo formulário para saber mais sobre aplicações de excelência.
</p>
<a id="CTA-button" href=#form>Comece agora!</a>
</div>
<div class="column-right">
<img src="./image.gif" alt="illustration" id="home-image" />
</div>
</div>
</section>
<section id="sobre" class="about">
<div class="about_main">
<h2>Sobre Min:</h2>
<p>
Olá, meu nome é Jonathan dos Santos Oliveira e sou Desenvolvedor Front End. Sou formado em Engenharia Civil e no início de 2022 decidi inovar profissionalmente iniciando os estudos na área de programação e logo descobrir uma área encantadora. Hoje estou em transição de carreira e busco meu primeiro desafio como Desenvolvedor Jr. Gosto de praticar esportes, além de assistir filmes e séries. E como parte do meu desenvolvimento, realizo trabalho social em um grupo chamado A Depressão Tem Cura, onde ajudamos pessoas que sofrem com depressão a recuperar a alegria de viver.
</p>
<ul class="title__network">
<!-- Links de suas redes sociais -->
<li class="title__network__item">
<a href="https://github.com/jonathansoliveira" target="_blank">
Github <img src="arrow.png">
</a>
</li>
<li class="title__network__item">
<a href="https://www.linkedin.com/in/jonathansoliveira77/" target="_blank">
Linkedin <img src="arrow.png">
</a>
</li>
<li class="title__network__item">
<a href="https://www.instagram.com/jonatthan.o/" target="_blank">
Instagram <img src="arrow.png">
</a>
</li>
<li class="title__network__item">
<a href="https://drive.google.com/file/d/18yoxZ5WYJSnh2HlAVS7O51vETWp9l7nN/view" target="_blank">
Curriculo <img src="arrow.png" target="_blank">
</a>
</li>
</ul>
</div>
<div class="img_dev_profile">
<img src="profile.jfif" alt="Foto do perfil do desenvolvedor" class="img-dev">
</div>
</section>
<form id="form" action="http://google.com">
<section id="form_contato">
<h2>Formulário de Interesses</h2>
<p>Digite seu nome:
<input type="text" name="userName" size=40 maxlength=40 placeholder="Digite seu nome completo">
</p>
<p>Digite seu e-mail:
<input type="e-mail" name="userJob" size=40 maxlength=40 placeholder="email@email.com">
</p>
<p>Escreva sua mensagem:
<textarea name="userComment" cols="30" rows="4"></textarea>
</p>
<p>Gostaria de receber novidades de projetos assim que lançados?
<div class="input">
<label for="radio__sim">Sim</label>
<input type="radio" name="exercise" value=1 id="radio__sim">
</div>
<div class="input">
<label for="radio__nao">Não</label>
<input type="radio" name="exercise" value=2 id="radio__nao">
</div>
</p>
<p>Para quais áreas você procura um profissional?
<div class="input">
<label for="fullstack">FullStack</label><input type="checkbox" name="fullStack" id="fullstack">
</div>
<div class="input">
<label for="frontend">Front-End</label>
<input type="checkbox" name="frontEnd" id="frontend">
</div>
<div class="input">
<label for="backend">Back-End</label>
<input type="checkbox" name="backEnd" id="backend" >
</div>
<div class="input">
<label for="datascience">Data-Science</label>
<input type="checkbox" name="dataScience" id="datascience">
</div>
</p>
<p>De que forma você gostaria de ser respondido?
<select name="moviePref">
<option></option>
<option value=1>E-mail</option>
<option value=2>Whatsapp</option>
<option value=3>Ligação</option>
<option value=4>Video-Chamada</option>
</select>
</p>
<input id="form-button" type=submit value="ENVIAR">
</section>
</form>
</body>
</html>