-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
Obviously this is my first sub issue.
I've noticed down that there's several formatting & embed options of things I can do in here, as this menu is now. visible to me (having created a template).

So first, I want to embed code for a landing page:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simple Web Page</title>
<style>
/* CSS goes here - styles the appearance of the page */
body {
font-family: Arial, sans-serif;
text-align: center;
margin-top: 50px;
background-color: #f4f4f4;
color: #333;
}
h1 {
color: #0056b3;
}
button {
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
background-color: #007bff;
color: white;
border: none;
border-radius: 5px;
margin-top: 20px;
}
button:hover {
background-color: #0056b3;
}
#message {
margin-top: 30px;
font-size: 18px;
color: #555;
}
</style>
</head>
<body>
<h1>Welcome to My Simple Web Page!</h1>
<p id="message">Click the button below to see a change.</p>
<button onclick="changeText()">Change Text</button>
<script>
// JavaScript goes here - adds interactivity to the page
function changeText() {
const messageElement = document.getElementById('message');
messageElement.textContent = "You clicked the button! The text has changed.";
messageElement.style.color = "#28a745"; // Change text color
}
</script>
</body>
</html>
So.... Next I need to set up Firebase app hosting, and import a GitHub repository, as I want to test this
Metadata
Metadata
Assignees
Labels
No labels