forked from 2010Java-Nick/2010Java-Nick-Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.html
More file actions
18 lines (18 loc) · 750 Bytes
/
Copy pathexample.html
File metadata and controls
18 lines (18 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>My Web Page</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' media='screen' href='example.css'>
<script src='main.js'></script>
</head>
<body>
<h1 style="color:red; text-align: end; font-family: Arial, Helvetica, sans-serif;">Hello World</h1>
<a class="link" href="http://www.revature.com">Revature</a>
<p>This is a really <span class="link large">cool</span> website that has some awesome links on it</p>
<h1 class="fancy">Goodbye World</h1>
<h1 id="specialH1" class="link fancy large">Different Styling</h1>
</body>
</html>