forked from Safouene1/support-palestine-banner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbanner.html
52 lines (46 loc) · 789 Bytes
/
banner.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
<style>
body {
margin-top: 20px;
}
*{
margin: 0;
}
a{
text-decoration: none;
display: flex ;
justify-content: center;
align-items: center;
flex-direction: column;
}
.banner{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.support-israel__label{
color: blue;
font-weight: 900;
font-size: large;
font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif
}
.line{
height: 5px;
width: 100%;
}
.white{
background-color: white;
}
.blue{
background-color: blue;
}
</style>
<div class="banner">
<div class="line blue"></div>
<div class="support-israel__label">
<img src="star-of-david.png" height="20px" alt="">
WE STAND WITH ISRAEL
</div>
<div class="line blue"></div>
<div class="line white"></div>
</div>