-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdiv.html
More file actions
27 lines (22 loc) · 685 Bytes
/
Copy pathdiv.html
File metadata and controls
27 lines (22 loc) · 685 Bytes
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
<!DOCTYPE html>
<html>
<head>
<style>
.myDiv {
border: 4px outset black;
background-color: pink;
text-align: center;
}
</style>
</head>
<body>
<h1>div</h1>
<div class="myDiv">
<h2>Version control system</h2>
<p>version control systems are a category of software tools that help a software team manage changes to source code over time.
Version control software keeps track every modification to the code in a special kind of datebase.
If a mistake is made,developers can turn back the clock and compare earlier versions of the code to help fix the mistake while minimizing disruption to all team members.</p>
</div>
<h2>This is outside of the div</h2>
</body>
</html>