We are about to switch to a new forum software. Until then we have removed the registration on this forum.
In my HTML is there any other way to do this instead of just writing a bunch of </br> tag.
<pre>
<head>
<meta charset="UTF-8">
<script language="javascript" type="text/javascript" src="libraries/p5.js"></script>
<script language="javascript" src="libraries/p5.dom.js"></script>
<script language="javascript" src="libraries/p5.sound.js"></script>
<script language="javascript" type="text/javascript" src="sketch.js"></script>
<link rel="stylesheet" href="libraries/w3.css">
</head>
<body style="padding:0; margin:0; background-color:#febc21;">
<div id="p5_loading" class="loadingclass">
</br>
</br>
</br>
</br>
</br>
</br>
</br>
</br>
</br>
<h1 class="w3-Jumbo w3-center">Loading</h1>
</div>
</body>
</pre>
Please help
Answers
what the heck my code didn't come up in the question that Loading was supposed to be
Loading
how do you post a question with HTML code in it that doesn't process it as code
DONT ANSWER MAKING NEW VERSION OF QUESTION
https://forum.Processing.org/two/discussion/15473/readme-how-to-format-code-and-text
(It's HTML, formatting it as code doesn't work. I've added pre tags but the HTML disappears. I'll convert it to lt/gt entities when I'm not on my phone)
To answer original question, use CSS and top margin.
https://forum.Processing.org/two/discussions/tagged/index.html
As an aside, those br tags are wrong anyway. Empty tags are written
br/
and not /br. Those are close tags without an open tag. Don't be surprised if something throws up parse errors in your HTML.
More on the aside -- explanation of self-closing / void / singleton tags in HTML 4 / 5 / XML, hence either <br> or <br /> is valid in HTML5, but not </br> :