-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProjectsDev.HTML
97 lines (65 loc) · 2.73 KB
/
ProjectsDev.HTML
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
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width-device-width, intial-scale-1">
<link rel="icon" href="Logo.ico">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css">
<link rel="stylesheet" href="CSS/projects.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script>
<title>WebDev</title>
</head>
<body>
<h2>Projects</h2>
<p>___________________</p>
<ol>
<li>This is where is post my Projects</li>
<li>also this is my first project</li>
<li>I hope u like it and thank u for the wait</li>
</ol>
<div class="tab">
<button class="btn btn-success" onclick="location.href='AboutDev.HTML';"> About</button>
</div>
<div id="Learn more." class="tabcontent">
</div>
<script>
function openCity(evt, cityName) {
var i, tabcontent, tablinks;
tabcontent = document.getElementsByClassName("tabcontent");
for (i = 0; i < tabcontent.length; i++) {
tabcontent[i].style.display = "none";
}
tablinks = document.getElementsByClassName("tablinks");
for (i = 0; i < tablinks.length; i++) {
tablinks[i].className = tablinks[i].className.replace(" active", "");
}
document.getElementById(cityName).style.display = "block";
evt.currentTarget.className += " active";
}
</script>
<!-- Menu Bar -->
<div id="mySidebar" class="sidebar">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<a href="Index.HTML">Home</a>
<a href="AboutDev.HTML">About</a>
<a href="NewsDev.HTML">News</a>
<a href="ContactsDev.HTML">Contacts</a>
</div>
<div id="main">
<button class="openbtn" onclick="openNav()">☰ Menu </button>
</div>
<script>
function openNav() {
document.getElementById("mySidebar").style.width = "250px";
document.getElementById("main").style.marginLeft = "250px";
}
function closeNav() {
document.getElementById("mySidebar").style.width = "0";
document.getElementById("main").style.marginLeft= "0";
}
</script>
<!-- Logo-->
<img src="Logo.png" href="Logo" width="130" height="130">
</body>
</html>