-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·67 lines (56 loc) · 1.97 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
<!DOCTYPE html>
<html lang="en">
<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>Tech Gallery</title>
</head>
<body>
<header class="header-container">
<img src="./images/trybe-logo.jpg" alt="" class="header-img">
<h1 class="header-title">TRYBE TECH-GALLERY</h1>
<a href="https://www.betrybe.com/" target="_blank" class="header-login">SIGN-UP</a>
</header>
<section class="text-section">
<p>Dê uma olhada em algumas das tecnologias que você aprenderá em nossos módulos de fundamentos e front-end!</p>
</section>
<section class="gallery">
<section class="gallery-card">
<h4>HTML</h4>
<img src="./images/html-logo.png" alt="HTML logo">
</section>
<section class="gallery-card">
<h4>CSS</h4>
<img src="./images/css-logo.png" alt="CSS logo">
</section>
<section class="gallery-card">
<h4>JAVASCRIPT</h4>
<img src="./images/javaScript-logo.png" alt="JAVASCRIPT logo">
</section>
<section class="gallery-card">
<h4>REACT</h4>
<img src="./images/react-logo.png" alt="REACT logo">
</section>
<section class="gallery-card">
<h4>RTL</h4>
<img src="./images/rtl-logo.png" alt="React Testing Library logo">
</section>
<section class="gallery-card">
<h4>REDUX</h4>
<img src="./images/redux-logo.png" alt="REDUX logo">
</section>
</section>
<hr>
<footer class="footer-container">
<a href="https://www.instagram.com/franfigueiredoo/" target="_blank">
<img src="./images/instagram-logo.png" alt="Instagram logo" class="social-instagram">
</a>
<a href="https://www.linkedin.com/in/francinefigueiredo/" target="_blank">
<img src="./images/linked-in-logo.png" alt="linkedin logo" class="social-linkedin">
</a>
</footer>
<script src="script.js"></script>
</body>
</html>