-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
91 lines (88 loc) · 3.01 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="style.css" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CYF Manchester Dictionary Project</title>
</head>
<body>
<div class="card mb-3" style="max-width: 80%;">
<div class="row no-gutters">
<div class="col-md-4">
<img
src="https://codeyourfuture.io/wp-content/uploads/2019/03/cyf_brand.png"
alt="CYF"
class="card-img logo"
/>
</div>
<div class="col-md-8">
<div class="card-body">
<h5 class="card-title">CYF dictionary</h5>
<p class="card-text">
This a collaborative dictionary made for and by the team of CYF
students and mentors to help everyone new to Software Development.
Learn and add new words. Github repo here
<a
href="https://github.com/Augs0/cyf-manchester-dictionary/"
target="_blank"
>CYF Dictionary Repo</a
>
</p>
</div>
</div>
</div>
</div>
<table class="table">
<thead class="thead-dark">
<tr>
<th scope="col">#</th>
<th scope="col">Word</th>
<th scope="col">Meaning</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>HTML</td>
<td>
HTML stands for Hypertext Markup Language. It is used to create the
basic structure of a webpage
</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Debugging</td>
<td>Debugging is the process of identifying and removing errors in written code</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Hard-coded numbers</td>
<td>Hard-coded number is a term used to designate literal numbers (not calculted or referenced amounts such as variables or dependent on variables for example)</td>
</tr>
<tr>
<th scope="row">3</th>
<td>HTTP</td>
<td>HTTP stands for HyperText Transfer Protocol, it is the underlying
protocol used by the World Wide Web.</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Refactoring</td>
<td>Code refactoring is the process of improving existing code through restructuring, editing and cleaning up while maintaining the exact same behaviour. </td>
</tr>
</tbody>
</table>
<script
src="https://code.jquery.com/jquery-3.4.1.slim.min.js"
integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n"
crossorigin="anonymous"
></script>
</body>
</html>