目录
link
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>learn js</title>
<base href="/">
<link href="styles/style.css" type="text/css" rel="stylesheet" />
</head>
<body>
<div id="hello">
<p>hello,world</p>
<p id="ruby-info">We are pleased to announce the release of Ruby 3.3.0-preview1. Ruby 3.3 adds a new pure-Ruby JIT compiler named RJIT, uses Lrama as a parser generator, and many performance improvements especially YJIT.</p>
</div>
</body>
</html>
#hello{
font: italic small-caps bold 16px/2 cursive;
color: rgb(214, 122, 127);
}
#ruby-info{
font: small-caps 16px/2 cursive;
color: green;
}
import
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>learn js</title>
<base href="/">
<style type="text/css">
@import url(styles/style.css);
</style>
</head>
<body>
<div id="hello">
<p>hello,world</p>
<p id="ruby-info">We are pleased to announce the release of Ruby 3.3.0-preview1. Ruby 3.3 adds a new pure-Ruby JIT compiler named RJIT, uses Lrama as a parser generator, and many performance improvements especially YJIT.</p>
</div>
</body>
</html>
标签:named,14,ruby,3.3,Ruby,hello,css
From: https://www.cnblogs.com/waterruby/p/17791108.html