-
Notifications
You must be signed in to change notification settings - Fork 0
/
index2.html
201 lines (176 loc) · 3.54 KB
/
index2.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
<!DOCTYPE html>
<html>
<head>
<title>Meu Portfólio</title>
<style>
body {
font-family: "Montserrat", Arial, sans-serif;
background-color: #f7f7f7;
margin: 0;
padding: 0;
color: #333;
}
.container {
max-width: 960px;
margin: 0 auto;
padding: 20px;
}
h1, h2, h3 {
color: #c5c8e7;
}
p{
color: #ada5bd;
}
a {
color: #6c5c7d;
text-decoration: none;
}
a:hover {
color: #bfa6db;
}
header {
background-color: #272C33;
padding: 10px;
text-align: center;
margin-bottom: 20px;
}
.profile img {
width: 100px;
height: auto;
max-width: 150px;
border-radius: 50%;
margin-bottom: 10px;
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
}
nav li {
margin: 10px 0;
}
#projetos {
width: 100%;
max-width: 80%;
height: auto;
background-color: #fff;
padding: 20px;
margin-bottom: 20px;
}
.projeto {
margin-bottom: 20px;
}
.projeto h3 {
margin-top: 0;
}
.projeto img {
max-width: 80%;
margin-bottom: 10px;
}
#redes-sociais {
background-color: #f0e2f4;
padding: 20px 0;
margin-bottom: 20px;
}
#redes-sociais ul {
display: flex;
justify-content: center;
align-items: center;
}
#redes-sociais li {
margin: 0 10px;
}
#mensagens {
background-color: #fff;
padding: 10px;
margin-bottom: 20px;
}
.mensagens-container {
position: relative;
}
.mensagem {
display: none;
}
.mensagem:first-child {
display: none;
}
.mensagem:first-child {
display: block;
}
.navegacao-mensagens {
text-align: center;
margin-top: 10px;
}
.seta-anterior,
.seta-proxima {
color: #6c5c7d;
font-size: 24px;
margin: 0 10px;
cursor: pointer;
}
footer {
background-color: #f0e2f4;
padding: 20px;
text-align: center;
}
*/
</style>
</head>
<body>
<header>
<div class="profile">
<img src="eu2.jpeg" alt="Foto de Perfil">
<h1>Arlindo Júnior</h1>
<p>Estudante de Ciência da Computação/ Espaço destinado ao compartilhamento de projetos</p>
</div>
<nav>
<ul>
<li><a href="#projetos">Projetos</a></li>
<li><a href="#redes-sociais">Redes Sociais</a></li>
<li><a href="#mensagens">Recado</a></li>
</ul>
</nav>
</header>
<section id="projetos">
<h2>Projetos</h2>
<div class="projeto">
<h3>Portifólio Pessoal CIN</h3>
<img src="imagemprojeto.jpeg">
<p1>O projeto de protótipo do portifólio consiste na aplicação dos conceitos introdutorios de HTML
e CSS, bem como dos artifícios que tais recursos colocam a dispor dos desenvolvedores
com o intuito de impulsionar a assimilação e o aprendizado de tais conceitos.
</p1>
</div>
</section>
<section id="redes-sociais">
<h2>Redes Sociais</h2>
<ul>
<li><a href="https://github.com/arllindosp">Github</a></li>
<li><a href="https://instagram.com/arllindojunior_?igshid=MmIzYWVlNDQ5Yg==">Instagram</a></li>
<li><a href="https://twitter.com/arllindojunior2?s=21">Twitter</a></li>
</ul>
</section>
<section id="mensagens">
<h2>Mensagens</h2>
<div class="mensagens-container">
<div class="mensagem">
<p2>Tenha coragem e seja gentil</p2>
</div>
<div class="mensagem">
<p2>Continue indo atrás dos seus sonhos!</p2>
</div>
</div>
<div class="navegacao-mensagens">
<a href="#" class="seta-anterior">←</a>
<a href="#" class="seta-proxima">→</a>
</div>
</section>
<footer>
<p>Arlindo Júnior © 2023</p>
</footer>
</body>
</html>