-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (37 loc) · 1.58 KB
/
index.html
File metadata and controls
37 lines (37 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE HTML>
<html>
<head>
<link rel="stylesheet" href="/css/stylesheet.css">
</head>
<body>
<h1>Code Formatting Heatmap</h1>
<p>Blah blah blah this is what this site is for hahahah do shit with it. Below you can find a live example of what you're contributing to! #totallyresumematerial.</p>
<img src="/img/heatmapplaceholder.jpg">
<p>Alright buddy let's get started here are some instructions [right here] and yeah go do that</p>
<form>
<textarea rows='15' cols='100' spellcheck='false'>
public class FizzBuzz {
public static void main(String[] args) {
for(int i = 1; i <= 100; i++) {
if (((i % 5) == 0) && ((i % 7) == 0))
System.out.print("fizzbuzz");
else if ((i % 5) == 0)
System.out.print("fizz");
else if ((i % 7) == 0)
System.out.print("buzz");
else
System.out.print(i);
System.out.print(" ");
}
}
}</textarea>
<input type="submit" value="Submit">
</form>
<h1>How does it work?</h1>
<p>Nullam accumsan dapibus pretium. Aenean at felis nisi. In sodales id lectus nec elementum. Praesent cursus tincidunt turpis, sit amet gravida metus venenatis nec. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; In eu augue pulvinar nisl commodo suscipit placerat id erat. Vivamus varius augue eu finibus ornare. Sed suscipit lobortis volutpat. Aliquam sagittis ornare porta. Nam fringilla porta nisi at dapibus. Cras sed ipsum ut odio cursus molestie eu vel eros.</p>
</body>
<footer>
© 2016 braverio ||
<a href="https://braver.io">Main Website</a>
</footer>
</html>