web
You’re offline. This is a read only version of the page.
close
Skip to main content
Community site session details

Community site session details

Session Id :

How to Add Static Text to CRM or Dataverse Using HTML Web Resources

Ram Prakash Profile Picture Ram Prakash 5,450 Super User 2025 Season 2
Implementation Steps : 

    1.  Navigate to https://make.powerapps.com

    2.  Click Solutions

    3. Open the Solution or Create a New Solution

    4. Click New  and Select Web Resource

    5. Select Type as HTML


    6. Input below Code

      <!DOCTYPE html>
      <html>
      <head>
          <meta charset="utf-8" />
          <title>Static Text</title>
          <style>
              body {
                  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
                  font-size: 14px;
                  color: #333;
                  margin: 0;
                  padding: 0;
                  background-color: transparent;
              }
      
              .static-text {
                  padding: 0;
                  border: none;
                  background: none;
              }
          </style>
      </head>
      <body>
          <div class="static-text">
              This is a static text.
          </div>
      </body>
      </html>
      




    7.  Click Save and Publish

    8. Open the form where you want to display this HTML

    9. Like Account open Information Form

    10.  Once Form Opened Drag and Drop HTML







    11.  Click Add

    12. Now Save and Publish the Form


    13. Conclusion:

      By following above steps we can easily add static text to MSCRM or DATAVERSE Form

    Comments