18 lines
388 B
HTML
18 lines
388 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Gradient interpolation</title>
|
|
<link rel="author" title="Mike Bremford" href="mailto:mike@bfo.com">
|
|
<link rel="author" title="CGQAQ" href="mailto:m.jason.liu@gmail.com">
|
|
<style>
|
|
.test {
|
|
width: 100px;
|
|
height: 100px;
|
|
background: rgb(0, 0, 99);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="test"></div>
|
|
</body>
|
|
</html>
|