-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAplicated-visual-desing.html
53 lines (52 loc) · 1.23 KB
/
Aplicated-visual-desing.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
<!DOCTYPE html>
<style>
h4 {
padding: 10px;
background-color: rgba(45, 45, 45, 0.1);
text-align: center;
font-size: 25px;
text-transform: uppercase;
}
p {
text-align: justify;
}
.links {
margin-right: 20px;
opacity:0.7;
}
.fullCard {
border: 1px solid #ccc;
border-radius: 5px;
margin: 10px 5px;
padding: 4px;
width:245px;
}
.cardContent {
padding: 10px;
}
.cardText {
margin-bottom: 30px;
}
#thumbnail {
box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}
</style>
<body>
<div class="fullCard">
<div class="cardContent">
<div class="cardText">
<h4> Alphabet</h4>
<hr>
<p>
<em>
Google was founded by Larry Page and Sergey Brin while they were <u>Ph.D. students</u> at <strong>Stanford University</strong>.
</em>
</p>
</div>
<div class="cardLinks">
<a href="https://en.wikipedia.org/wiki/Larry_Page" target="_blank" class="links">Larry Page</a>
<a href="https://en.wikipedia.org/wiki/Sergey_Brin" target="_blank" class="links">Sergey Brin</a>
</div>
</div>
</div>
</body>