zmedia

CSS3 - Intro

Part 1 dalam tutorial CSS3 adalah intro
di intro ini menjelaskan sedikit terkait : sejarah CSS 1, 2 dan 3

dan sedikit membahas tentang Border Radius.

<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS3 Intro</title>

<style>
div {
width: 400px;
height: 300px;
margin: 50px auto;
background-color: aqua;
border-radius: 20px;
}

</style>

</head>
<body>
<div></div>
</body>
</html>
test langsung copy paste :

<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS3 Intro</title>

<style>
div {
width: 400px;
height: 300px;
margin: 50px auto;
background-color: aqua;
border-radius: 20px;
}

</style>

</head>
<body>
<div></div>
</body>
</html>

terima kasih

Post a Comment for "CSS3 - Intro"