-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathability.html
More file actions
122 lines (110 loc) · 3.32 KB
/
Copy pathability.html
File metadata and controls
122 lines (110 loc) · 3.32 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html>
<head>
<title>Web Programming</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="costum.css">
<link rel="shortcut icon" type="image/png" href="favicon.png">
<script type="text/javascript" src="js/bootstrap.js"></script>
</head>
<body>
<div class="container-fluid">
<nav class="navbar navbar-expand-lg navbar-light bg-light ">
<a class="navbar-brand" href="#">Web Programming</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="index.html">Languages<span class="sr-only">(current)</span></a>
</li>
<li class="nav-item active">
<a class="nav-link" href="ability.html">Ability</a>
</li>
<li class="nav-item">
<a class="nav-link" href="price.html">Pricing</a>
</li>
<li class="nav-item">
<a class="nav-link disabled" href="com.html" tabindex="-1" aria-disabled="true">Coming soon..</a>
</li>
</ul>
</div>
</nav>
<div class="row">
<h1>Table of Languages</h1>
<table class="table">
<thead class="thead-dark" ">
<tr>
<th scope="col">Formating Languages</th>
<th scope="col">Code Form</th>
<th scope="col">An Editor</th>
<th scope="col">Dificult of Learning</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">HTML</th>
<td><p>Sample text here...</p>
<p>And another line of sample text here...</p></td>
<td>Notepad++</td>
<td>Easy</td>
</tr>
<tr>
<th scope="row">CSS</th>
<td> body{
margin: 10px;
background-color: #f4f4f4;
}
</td>
<td>Notepad++</td>
<td>Easy</td>
</tr>
<tr>
<th scope="row">Bootstrap</th>
<td><p class="container" >Sample text here...</p>
<p></td>
<td>Subline Text</td>
<td>Very Easy</td>
</tr>
</tbody>
</table>
<table class="table">
<thead class="thead-dark">
<tr>
<th>Programming Languages</th>
<th scope="col"></th>
<th scope="col"></th>
<th scope="col"></th>
</tr>
</thead>
<tr>
<th scope="col">JavaScript</th>
<th scope="col">function open(){ alert("Hello");}</th>
<th scope="col">Subline Text</th>
<th scope="col">Medium</th>
</tr>
<tbody>
<tr>
<th scope="row">jQuary</th>
<td>$(document).ready(function(){
// jQuery methods go here...
});</td>
<td>Easy</td>
<td>Subline Text</td>
</tr>
<tr>
<th scope="row">My SQL</th>
<td>ELECT column1, column2....columnN
FROM table_name
WHERE CONDITION-1 {AND|OR} CONDITION-2;</td>
<td>XAMPP</td>
<td>Hard</td>
</tr>
</tbody>
</table>
</div>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<script type="text/javascript" src="https://code.jquery.com/jquary.js"></script>
</body>
</html>