Welcome! My name is Evan...

Article text will look like this. Sections will contain headings and articles. Articles will serve as containers for paragraph tags, which divide paragraphs.

These articles will be positioned more cleanly, this is just a test of the font.

These short lines serve to test text-wrapping. I'm trying to make the text not break to the left.

Testing edited <code> tags

So I decided to alter how <code> tags should appear

"Inline"-style code samples will appear with this styling.

"Block"-style code will render as such...

import java.util.lang.*;

public class TestYourCode extends SomeExtension {

private final boolean isRunning = true;

	public static void start() {
		//start program
		
	}
	
	public static void main(String args[]) {
		start();
		
	}
	
}

In that example, syntax highlighting conforms to the Java language. However, it is not limited to merely java. Here's an example of HTML syntax.

<!DOCTYPE html>

<html>
<head>
<title>Welcome to the website!</title>
<link rel="stylesheet" href="styles/globalstyles.css">
<script type="text/javascript" src="scripts/globalscripts.js"></script>
</head>

<body onload="doSomeJavaScript(pls)">
<div id="bodywrapper">
    <p id="intro">
      Welcome to our website! Here you will find more
      information about our services; in addition, you can
      contact us with requests and/or comments!
    </p>

</div>

</body>

</html>