how do i paste something in azure under hostingstart

Stephanie Greene 0 Reputation points
2024-07-28T21:28:13.83+00:00
<!doctype html>
<!doctype html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Light Theme</title>
<link href="css/singlePageTemplate.css" rel="stylesheet" type="text/css">
<!--The following script tag downloads a font from the Adobe Edge Web Fonts server for use within the web page. We recommend that you do not modify it.-->
<script>var adobewebfontsappname="dreamweaver"</script>
<script src="http://use.edgefonts.net/source-sans-pro:n2:default.js" type="text/javascript"></script>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body bgcolor="#FFFF00">
<!-- Main Container -->
<div class="container">
<!-- Navigation -->
<header> <a href="">
<h4 class="logo">CNW 1</h4>
</a>
<nav>
<ul>
<li><a href="#hero">HOME</a></li>
<li><a href="#about">ABOUT</a></li>
<li> <a href="#contact">CONTACT</a></li>
</ul>
</nav>
</header>
<!-- Hero Section -->
<section class="hero" id="hero">
<h2 class="hero_header">WELCOME TO CNW PAGE 1</h2>
<p class="tagline">FULL SAIL UNIVERSITY</p>
</section>
<!-- About Section -->
<!-- Stats Gallery Section -->
<!-- Parallax Section -->
<!-- More Info Section -->
<footer> </footer>
<!-- Footer Section -->
<!-- Copyrights Section -->
</div>
<!-- Main Container Ends -->
</body>
</html>
Azure App Service
Azure App Service
Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
7,920 questions
{count} votes

1 answer

Sort by: Most helpful
  1. ajkuma 26,721 Reputation points Microsoft Employee
    2024-07-31T19:40:24.8766667+00:00

    Stephanie Greene, Based on my understanding of your issue, I'm sharing a few options to accomplish this. Please let me know if I misunderstood your issue.

    1. Go to the App Service Editor: Under the “Development Tools” section, click on “App Service Editor (Preview)” or “Advanced Tools” (Kudu).
    2. Using FTP or Deployment Tools: https://learn.microsoft.com/azure/app-service/deploy-ftp?tabs=portal
    3. Access Kudu Console: Browse to Kudu : http://”yoursitename”.scm.azurewebsites.net.
    • Navigate to the Site Folder: In the Kudu console, navigate to the D:\home\site\wwwroot directory. This is where your hostingstart.html file is located.
    • Upload or Edit File: You can either upload a new file or edit the existing hostingstart.html file. To upload, click on the "Debug console" tab, select "CMD", and then use the "Upload" button to upload your file. To edit, click on the pencil icon next to the hostingstart.html file to open the editor and paste your content.
    • Save Changes: After pasting your content, make sure to save the changes.

    Additionally, By default, Azure App Service serves the content from the wwwroot folder. Ensure your file is placed correctly and named as hostingstart.html.

    If you want hostingstart.html to be the default page served by your web app:

    Check Configuration:

    In Azure Portal, go to your App Service and select “Configuration” under the “Settings” section.

    Ensure there are no overriding settings that might change the default behavior or file paths.


    If the answer helped (pointed you in the right direction) > please click Accept Answer - it will benefit users in finding the right answer quickly.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.