-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
77 lines (68 loc) · 3.05 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
<!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="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<title>Batata Harra Webring</title>
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/style.css" />
<!-- components -->
<script src="components/webringComponent.js" type="text/javascript" defer></script>
<script src="components/memberCardComponent.js" type="text/javascript" defer></script>
<title>Batata Harra Webring</title>
</head>
<body>
<div class="wrapper">
<!-- Flame with the title and sub-title section -->
<div class="flame__container">
<picture class="flame__container__text__flame__container">
<source srcset="images/flame.gif" media="(min-width: 800px)" />
<img src="images/flame.gif" alt="Flame" />
</picture>
<h1 class="flame__container__text">
<span class="flame__container__text__span--flame">Batata Harra </span>
<span class="flame__container__text__span">Webring</span>
</h1>
</div>
<!-- Webring buttons section -->
<webring-css
site="https://gabykaram.com"
class="webring-css__btns--normal"
>
</webring-css>
<!-- Card title -->
<div class="member__container">
<div class="row">
<h1 class="batataHarra__title__text--secondary">
<span class="bh-pl-1">Members</span>
</h1>
<p>Batata Harra members are strong believers of the learn by teaching concepts. Our aim is to help to continuously lift each other up and spread knowledge.</p>
</div>
</div>
<!-- Card section -->
<div class="card__container">
<member-card portfolio-url="https://gabykaram.com"
member-image-src="images/members/gaby.png"
member-name="Gaby Karam"
member-role="Best Mentor"></member-card>
<member-card portfolio-url="https://abouhanna.com"
member-image-src="images/members/kevin.png"
member-name="Kevin Abou Hanna"
member-role="Mad Designer"></member-card>
<member-card portfolio-url="https://antoinedebes.codes"
member-image-src="images/members/antoine.png"
member-name="Antoine Debes"
member-role="CSS Guru"></member-card>
<member-card portfolio-url="https://www.linkedin.com/in/william-abousharaf-030379107/"
member-image-src="images/members/william.jpg"
member-name="William AbouSharaf"
member-role="Game Developer Guru"></member-card>
</div>
</div>
</body>
</html>