-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
95 lines (86 loc) · 3.25 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
<!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">
<title>Git Group Study MX 🇲🇽 </title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha256-eZrrJcwDc/3uDhsdt61sL2oOBY362qM3lon1gyExkL0=" crossorigin="anonymous" />
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<!-- Bulma Version 0.6.2-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.6.2/css/bulma.min.css" integrity="sha256-2k1KVsNPRXxZOsXQ8aqcZ9GOOwmJTMoOB5o5Qp1d6/s=" crossorigin="anonymous" />
<link rel="stylesheet" type="text/css" href="../css/hero.css">
</head>
<body>
<section class="hero is-info is-medium is-bold">
<div class="hero-head">
<nav class="navbar">
<div class="container">
<div class="navbar-brand">
<a class="navbar-item" href="../">
Git Group Study 🇲🇽 Julio 2022
</a>
<span class="navbar-burger burger" data-target="navbarMenu">
<span></span>
<span></span>
<span></span>
</span>
</div>
<div id="navbarMenu" class="navbar-menu">
<div class="navbar-end">
<a class="navbar-item is-active">
Home
</a>
</div>
</div>
</div>
</nav>
</div>
</section>
<div class="box cta">
<p class="has-text-centered">
<img src="https://gitgroupstudymx.github.io/img/campus-experts.png" width="20%"/><br>
Git Group Study MX
</p>
</div>
<section class="container">
<div class="sandbox">
<div class="tile is-ancestor">
<div class="tile is-parent is-shady">
<article class="tile is-child notification is-white">
<p class="title">Hello World</p>
<p class="subtitle">What is up?</p>
</article>
</div>
<div class="tile is-parent is-shady">
<article class="tile is-child notification is-white">
<p class="title">Add your name and your twitter here!</p>
<p> <strong>Carlo Gilmar</strong> @carlogilmar </p>
<!-- Here you can modify! -->
<p> <strong>Paty Gutiérrez</strong> @entelector </p>
<p> <strong>Alicia Gaona</strong> @AliciaGaona </p>
<p> <strong>Jocelyn Perez</strong> @JossPerezT </p>
<p> <strong>Diana Karina Magallanes</strong> @DianaMagallanes </p>
<p> <strong>Linus Torvalds</strong> @LinusTorvalds </p>
</article>
</div>
<div class="tile is-parent is-shady">
<article class="tile is-child notification is-white">
<img src="https://octodex.github.com/images/octocat-de-los-muertos.jpg" width="50%"/>
</article>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="container">
<div class="content has-text-centered">
<p>
<strong>Git Group Study 🇲🇽</strong>
</p>
</div>
</div>
</footer>
<script async type="text/javascript" src="../js/bulma.js"></script>
</body>
</html>