-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (49 loc) · 1.65 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
<!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="stylesheet" href="style.css" />
<title>UI card hover</title>
</head>
<body>
<div class="container">
<div class="card">
<div class="circle">
<h2>HTML</h2>
</div>
<div class="content">
HTML stands for Hyper Text Markup Language. HTML is the standard
markup language for creating Web pages. HTML describes the structure
of a Web page. HTML consists of a series of elements. HTML elements
tell the browser how to display the content.
<a href="#">read more</a>
</div>
</div>
<div class="card">
<div class="circle">
<h2>CSS</h2>
</div>
<div class="content">
Cascading Style Sheet describes the HTML elements which are displayed
on screen, paper, or in other media. It controls the layout of
multiple web pages at one time. It sets the font-size, font-family,
color, background color on the page.
<a href="#">read more</a>
</div>
</div>
<div class="card">
<div class="circle">
<h2>Javascript</h2>
</div>
<div class="content">
JavaScript is the Programming Language for the Web. JavaScript can
update and change both HTML and CSS. JavaScript can calculate,
manipulate and validate data.
<a href="#">read more</a>
</div>
</div>
</div>
</body>
</html>