SAP Web IDE will no longer available via SAP Cloud Platform trial accounts as of late 2020. From then on, the documentation in this section will only be valid if you have access to SAP Web IDE through a productive SAP Cloud Platform account. Please consider SAP Business Application Studio as an alternative. See App Development Using SAP Business Application Studio.
index.html file inside
					it by choosing the New File icon.index.html file and
					select Save:index.html
<!DOCTYPE html>
<html>
	<head>
		<meta http-equiv="X-UA-Compatible" content="IE=edge">
		<meta charset="utf-8">
		<title>SAPUI5 Walkthrough</title>
		<script
			id="sap-ui-bootstrap"
			src="/resources/sap-ui-core.js"
			data-sap-ui-theme="sap_belize"
			data-sap-ui-libs="sap.m"
			data-sap-ui-compatVersion="edge"
               data-sap-ui-async="true"
               data-sap-ui-onInit="module:my/app/main"
               data-sap-ui-resourceRoots='{"my.app": "./"}'
 			></script>
	</head>
	<body class="sapUiBody" id="content">
	</body>
</html>Create new file main.js and paste the following code into
						it:
main.js
sap.ui.define(['sap/m/Text'], function(Text) {
    new Text({
        text: "OpenUI5 is loaded successfully!"
    }).placeAt("content");
});
Adapt the path where the resources are located
						(src="/resources/sap-ui-core.js") according to your
					installation. For OpenUI5 you can use
						src="https://openui5.hana.ondemand.com/resources/sap-ui-core.js".
						For accessing SAPUI5 on the SAP Cloud Platform, for
						example, use
							src="https://sapui5.hana.ondemand.com/resources/sap-ui-core.js".
				
You can use this reference to the latest stable version of SAPUI5 for the tutorial or for testing purposes, but never use this for productive use. In an actual app, you always have to specify an SAPUI5 version explicitly.
For more information, see Variant for Bootstrapping from Content Delivery Network.