-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
137 lines (116 loc) · 3.86 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!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">
<title>Mindera School Example</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/build/reset.min.css">
<link rel="stylesheet" href="./src/style.min.css">
</head>
<body>
<div id="app">
<header>
<h1><span>Mindera</span> <span>School</span> <span>Example</span></h1>
</header>
<main>
<section class="people">
<div class="card">
<div class="card-header">
<h2>Beep</h2>
</div>
<div class="card-main">
<img src="https://via.placeholder.com/100x100.png" alt="Beep">
<p>Mini Descrição</p>
<a href="#">Ver Mais</a>
</div>
<div class="card-footer">
<ul class="tags">
<li class="card-tag-student">Aluno</li>
</ul>
</div>
</div>
<div class="card">
<div class="card-header">
<h2>Edgar</h2>
</div>
<div class="card-main">
<img src="./Edgar/Profile.png" alt="Edgar">
<p>Mini Descrição</p>
<a href="#">Ver Mais</a>
</div>
<div class="card-footer">
<ul class="tags">
<li class="card-tag-fe">Front-End</li>
<li class="card-tag-prof">Professor</li>
</ul>
</div>
</div>
<div class="card">
<div class="card-header">
<h2>Flávio Silva</h2>
</div>
<div class="card-main">
<img src="./Flavio/Flavio.jpg" alt="Flávio Silva">
<p>Mini Descrição</p>
<a href="./Flavio/index.html">Ver Mais</a>
</div>
<div class="card-footer">
<ul class="tags">
<li class="card-tag-fe">Front-End</li>
<li class="card-tag-prof">Professor</li>
</ul>
</div>
</div>
<div class="card">
<div class="card-header">
<h2>Sara Cardozo</h2>
</div>
<div class="card-main">
<img src="./Sara/Profile.jpg" alt="Sara Cardoso">
<p>Quero mais camisolas! - Flávio :)</p>
<a href="#">Ver Mais</a>
</div>
<div class="card-footer">
<ul class="tags">
<li class="card-tag-prof">"Professora"</li>
</ul>
</div>
</div>
</section>
<section class="projects">
<div class="tabmenu">
<button class="tablinks" onclick="changeProject(event, 'ToDoList')">ToDoList</button>
<button class="tablinks"
onclick="changeProject(event, 'BasicAppExercises')">BasicAppExercises</button>
<button class="tablinks" onclick="changeProject(event, 'StarWarsRoll')">StarWarsRoll</button>
</div>
<div id="ToDoList" class="tabcontent">
<h2><a href="https://github.com/mindera-school/MS5-To-Do-List">To Do List</a></h2>
<h3>Made by the class</h3>
<iframe src="https://mindera-school.github.io/MS5-To-Do-List/" title="To Do List" width="100%"
height="500px"></iframe>
</div>
<div id="BasicAppExercises" class="tabcontent">
<h2><a href="https://github.com/mindera-school/MS5-Basic-App-Exercises">Basic App Exercises</a></h2>
<h3>Made by <a href="https://github.com/Gabriel-Sous-a">Gabriel Sousa</a></h3>
<iframe src="https://mindera-school.github.io/MS5-Basic-App-Exercises/" title="" width="100%"
height="500px"></iframe>
</div>
<div id="StarWarsRoll" class="tabcontent">
<h2><a
href="https://github.com/mindera-school/MS5-FE-Vanilla-Exercicies/tree/main/StarWarsRoll">StarWarsRoll</a>
</h2>
<h3>Made by <a href="https://github.com/LeoHabs">Leonardo Teixeira</a></h3>
<iframe src="https://mindera-school.github.io/MS5-FE-Vanilla-Exercicies/StarWarsRoll/" title=""
width="100%" height="500px"></iframe>
</div>
</section>
</main>
<footer>
<p><a href="https://school.mindera.com/">We craft software with people we love.</a></p>
</footer>
</div>
<script src="./src/script.js"></script>
</body>
</html>