-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
102 lines (102 loc) · 2.6 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
<!DOCTYPE html>
<html lang="pt">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Trybe Tech-Gallery</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto&display=swap"
rel="stylesheet"
/>
<link
rel="shortcut icon"
href="./images/trybe-logo.jpg"
type="image/x-icon"
/>
</head>
<body>
<header>
<img
class="header-img"
src="./images/trybe-logo.jpg"
alt="Website logo"
/>
<h1>TRYBE TECH-GALLERY</h1>
<h3>SIGN-UP</h3>
</header>
<section class="description">
<p>
Take a look at some of the technologies which you will learn in our
fundamentals and front-end module!
</p>
</section>
<section id="container">
<section class="gallery">
<div>
<h4>HTML</h4>
<img
class="gallery-img"
src="./images/html-logo.png"
alt="HTML logo"
/>
</div>
<div>
<h4>CSS</h4>
<img class="gallery-img" src="./images/css-logo.png" alt="CSS logo" />
</div>
<div>
<h4>JAVASCRIPT</h4>
<img
class="gallery-img"
src="./images/javaScript-logo.png"
alt="JavaScript logo"
/>
</div>
<div>
<h4>REACT</h4>
<img
class="gallery-img"
src="./images/react-logo.png"
alt="React logo"
/>
</div>
<div>
<h4>RTL</h4>
<img
class="gallery-img"
src="./images/rtl-logo.png"
alt="React Testing Library logo"
/>
</div>
<div>
<h4>REDUX</h4>
<img
class="gallery-img"
src="./images/redux-logo.png"
alt="Redux logo"
/>
</div>
</section>
</section>
<br />
<footer>
<a href="https://www.instagram.com/betrybe/" target="_blank">
<img
class="social-img"
src="./images/instagram-logo.png"
alt="Instagram logo"
/>
</a>
<a href="https://www.linkedin.com/school/betrybe/" target="_blank">
<img
class="social-img"
src="./images/linked-in-logo.png"
alt="Linkedin logo"
/>
</a>
</footer>
</body>
</html>