我的练习网页完全是空的,我不知道为什么
My practice webpage is completely empty and I do not know why
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta name="description" content="This is a practice website">
<title>Everything Practice</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="Resources/css/index.css" rel="stylesheet" type="text/css">
</head>
<html>
<body>
<!--Title and Banner-->
<header>
<title>
<h1>Flip 'n' Sell</h1>
<title>
<nav>
<ul>
<li>Home</li>
<li>Info</li>
<li>Help</li>
<li>Selling</li>
</ul>
</nav>
</header>
</body>
</html>`
这是我目前的 html 页面
这是我的 css。如您所见,我所做的只是将其设置为默认边距和
填充是不存在的。当我加载它并查看网页时,什么都没有,什么都没有。我究竟做错了什么。顺便说一下,我还是个新手。
* {
margin: none;
padding: none;
box-sizing: border-box;
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="This is a practice website">
<title>Everything Practice</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="Resources/css/index.css" rel="stylesheet" type="text/css">
</head>
<body>
<!--Title and Banner-->
<header>
<h1>Flip 'n' Sell</h1>
<nav>
<ul>
<li>Home</li>
<li>Info</li>
<li>Help</li>
<li>Selling</li>
</ul>
</nav>
</header>
</body>
</html>
修复是您的标题标签未终止。需要相应的 </title>
但实际上标题标签不属于那里,应该像我在示例中所做的那样删除。
将开始的 <html>
标签移动到 <head>
标签之前的 Doctype 声明下,并更改或删除 body.[=14 中的 <title>
标签=]
title 标签定义了整个文档的标题(在浏览器选项卡上显示的内容),在呈现页面时可能会造成一些混乱。See W3 School's post on the title tag
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta name="description" content="This is a practice website">
<title>Everything Practice</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="Resources/css/index.css" rel="stylesheet" type="text/css">
</head>
<html>
<body>
<!--Title and Banner-->
<header>
<title>
<h1>Flip 'n' Sell</h1>
<title>
<nav>
<ul>
<li>Home</li>
<li>Info</li>
<li>Help</li>
<li>Selling</li>
</ul>
</nav>
</header>
</body>
</html>`
这是我目前的 html 页面 这是我的 css。如您所见,我所做的只是将其设置为默认边距和 填充是不存在的。当我加载它并查看网页时,什么都没有,什么都没有。我究竟做错了什么。顺便说一下,我还是个新手。
* {
margin: none;
padding: none;
box-sizing: border-box;
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="This is a practice website">
<title>Everything Practice</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="Resources/css/index.css" rel="stylesheet" type="text/css">
</head>
<body>
<!--Title and Banner-->
<header>
<h1>Flip 'n' Sell</h1>
<nav>
<ul>
<li>Home</li>
<li>Info</li>
<li>Help</li>
<li>Selling</li>
</ul>
</nav>
</header>
</body>
</html>
修复是您的标题标签未终止。需要相应的 </title>
但实际上标题标签不属于那里,应该像我在示例中所做的那样删除。
将开始的 <html>
标签移动到 <head>
标签之前的 Doctype 声明下,并更改或删除 body.[=14 中的 <title>
标签=]
title 标签定义了整个文档的标题(在浏览器选项卡上显示的内容),在呈现页面时可能会造成一些混乱。See W3 School's post on the title tag