1
0
forked from x/ContextOS
This commit is contained in:
shaoying 2022-12-17 09:11:46 +08:00
parent de3adc66e2
commit 18f8a84f7d
2 changed files with 34 additions and 0 deletions

3
src/hi/hi.css Normal file
View File

@ -0,0 +1,3 @@
p {
color: red;
}

31
src/hi/hi.html Normal file
View File

@ -0,0 +1,31 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="hi.css">
</head>
<body>
<h1>hello world</h1>
<h2>hello world</h2>
<h3>hello world</h3>
<h4>hello world</h4>
<h5>hello "'&world</h5>
<h6>hello world</h6>
<p>hello world</p>
<i>hello world</i>
<u>hello world</u>
<b>hello world</b>
<em>hello world</em>
<strong>hello world</strong>
<a href="https://baidu.com">baidu</a>
<ul>
<li> 1 </li>
<li> 1 </li>
<li> 1 </li>
</ul>
<ol>
<li> 1 </li>
<li> 1 </li>
<li> 1 </li>
</ol>
</body>
</html>