-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcourses.html
More file actions
45 lines (40 loc) · 1.54 KB
/
courses.html
File metadata and controls
45 lines (40 loc) · 1.54 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="navbar">
<div id="logo"><img src="res/section2GMCLogo.png"></div>
<nav style="text-align: center">
<ul>
<li><a href="#"> Home</a></li>
<li><a href="courses.html">Courses</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
<center>
<p style ='color :white '>courses</p>
<p style ='color :white '>Feedback</p>
<button id="b" onclick="Bold()">B</button>
<button id ="I" onclick="ITA()"> I</button>
<button id="underline"onclick="under()" >Underline</button>
<select id = "size" onchange="changesize()">
<option>20px</option>
<option>30px</option>
<option>40px</option>
</select>
<select id = "police" onchange="changepolice()">
<option>Arial</option>
<option>Verdana</option>
<option>Geneva</option>
</select>
<form>
<br>
<textarea id="texto" cols="70" row="90"></textarea>
</form>
</center>
</body>
<script type="text/javascript" src="js/main.js"></script>
</html>