Open the visual studio and click on the create new project.
Click on the ok button then you see the below window
Select the Empty then click ok now your web app project successfully created
Here is solution explorer of your project here you create your web pages
Now add web form in your project and add following code in your web page and run you project by press the F5
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Asp.net Web App</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2>
Welcome to asp.net!
</h2>
</div>
</form>
</body>
</html>
What is ASP.Net?
Click on the ok button then you see the below window
Select the Empty then click ok now your web app project successfully created
Here is solution explorer of your project here you create your web pages
Now add web form in your project and add following code in your web page and run you project by press the F5
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Asp.net Web App</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2>
Welcome to asp.net!
</h2>
</div>
</form>
</body>
</html>
What is ASP.Net?