-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProject1.html
More file actions
101 lines (64 loc) · 1.37 KB
/
Project1.html
File metadata and controls
101 lines (64 loc) · 1.37 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html>
<head>
<link href="css/shCore.css" rel="stylesheet" type="text/css" />
<link href="css/shThemeDefault.css" rel="stylesheet" type="text/css" />
</head>
<body>
<nav>
<a href="Project1">Numba 1</a>
<a href="Real Site.html">Numba 2</a>
</nav>
<h1>Paragraphs</h1>
<p>I like ice cream</p>
<p>I like pie</p>
<h2>Lists</h2>
<ol>
<li>Pizza party</li>
<li>Birthday Party</li>
</ol>
<ul>
<li>Preston Playz</li>
<li>Lachlan</li>
<li>JeromeASF</li>
</ul>
<ol>
<li>Basketball</li>
<ul>
<li>Basket</li>
<li>Ball</li>
<li>Dunk</li>
</ul>
</ol>
<h3>Anchors</h3>
<a href="view-source:http://clockshield.github.io/">
<a href="http://clockshield.github.io/"target="_bl">
Other Website
</a>
<h4>Images</h4>
<img width="250" height="250"src="https://s-media-cache-ak0.pinimg.com/736x/98/2c/d8/982cd88ff2d4285eb3596073b14272ad.jpg"/>
<img width="250" height="250"src="images/header.jpg"/>
<h5>Image + Anchors</h5>
<a href="https://upload.wikimedia.org/wikipedia/en/f/f4/Bastion_Boxart.jpg">
<img src="https://upload.wikimedia.org/wikipedia/en/f/f4/Bastion_Boxart.jpg"/>
<a>
<a href="">
<img src="images/Sandbox.png"/p>
</a>
<h6>C Plus Plus</h6>
<pre class='brush: cpp'>
#include <iostream>
using namespace std;
int main(){
int num;
cin>>num;
if(num > 3){
cout<<"You Lost";
}
else{
cout<<"You Win";
}
}
</pre>
</body>
</html>