This repository was archived by the owner on Sep 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathprocessingTips.html
More file actions
53 lines (46 loc) · 1.84 KB
/
processingTips.html
File metadata and controls
53 lines (46 loc) · 1.84 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<title>Processing Tips</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://central.jointheleague.org/style/style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway">
<link rel="icon" type="image/png" href="http://central.jointheleague.org/img/favicon.png">
<script src="http://central.jointheleague.org/script/headerAndFooter.js"></script>
</head>
<body>
<div id ="wrap">
<div id ="main">
<div id="header">
<script>addRecipeHeader();</script>
</div>
<div id = "tipsPage">
<div id="tipsTitle">
<h1>Tips Page</h1>
<hr>
</div>
<div id ="tipsBody">
<h2>Here is the First Heading</h2>
<p style = "font-weight: 900;">
Here is the explination of the topic. Here is the explination of the topic. Here is the explination of the topic. Here is the explination of the topic. Here is the explination of the topic. Here is the explination of the topic. Here is the explination of the topic.
</p>
<pre>
public static void exampleCode(int num){
for(int i=0; i<100; i+=3){
if(i%5==0){
System.out.println("Divisible by 3 and 5!");
}
}
}
</pre>
<div style="clear:both;"></div>
</div>
</div>
</div>
</div>
<div id="footer">
<script>addRecipeFooter();</script>
</div>
</body>
</html>