In Asp.net Mvc Razor Syntax where is head tag define?

时间:2016-06-18 19:58:01

标签: html asp.net

Can any one tell me that In Asp.net Mvc Razor Syntax where is head tag define?

2 个答案:

答案 0 :(得分:0)

与普通HTML中定义的方式相同。例如,您可以创建一个布局页面并在那里创建头部。

答案 1 :(得分:0)

您可以使用与 Html

相同的标记

您可以创建如下的布局

<!DOCTYPE html>
<html>
<head>
<title> Project </title>
</head>
<body>
<p>Your Content<p/>
</body>
</html>