<!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;
}
将开始<html>
标记移动到 Doctype 声明下<head>
标记之前,然后从正文中更改或删除<title>
标记。
标题标签正在定义整个文档的标题(浏览器选项卡上显示的内容(,并且在呈现页面时可能会导致一些混乱。在标题标签上查看W3学校的帖子
<!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>
但实际上标题标签不属于那里,应该像我在示例中所做的那样删除。