-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
101 lines (94 loc) · 3.53 KB
/
Copy pathindex.html
File metadata and controls
101 lines (94 loc) · 3.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Coding Practice</title>
<link rel="stylesheet" href="style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Manufacturing+Consent&display=swap"
rel="stylesheet"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap"
rel="stylesheet"
/>
</head>
<body id="first">
<div id="main">
<div class="middle">
<h1 class="head">Software Development</h1>
<img
id="image"
src="./Images/windows-QKuAz8zJRng-unsplash.jpg"
alt="developer"
/>
<p class="font">
Software development is the process of creating and maintaining
software. It encompasses all the activities from initial design and
coding to testing, deployment, and ongoing maintenance. Essentially,
it's the process of turning a concept or idea into a functional piece
of software. <br /><br />
<span class="span1">Here's a breakdown of the key aspects:</span
><br />
</p>
</div>
<div class="left two">
<h3 class="head">Core Activities</h3>
<ul class="font">
<li>
<span>Conception and Requirements Gathering:</span> Identifying the
need for the software and defining what it should do.
</li>
<li>
<span>Design:</span> Planning the structure, architecture, and user
interface of the software.
</li>
<li>
<span>Coding/Implementation:</span> Writing the actual code using
programming languages.
</li>
<li>
<span>Testing:</span> Ensuring the software functions as expected
and meets the defined requirements.
</li>
<li>
<span>Deployment:</span> Making the software available to users.
</li>
<li>
<span>Maintenance:</span> Providing ongoing support, updates, and
bug fixes.
</li>
</ul>
</div>
<div class="right two">
<h3 class="head">Key Concepts:</h3>
<ul class="font">
<li>
<span>Software Development Life Cycle (SDLC):</span> A structured
process that guides the development of software, breaking it down
into phases.
</li>
<li>
<span>Programming Languages:</span> Tools used to write the
instructions that tell the computer what to do.
</li>
<li>
<span>Software Developers:</span> Professionals who design, code,
and test software.
</li>
</ul>
</div>
<p id="clear" class="font">
In essence, software development is a multifaceted process that combines
technical skills with creative problem-solving to bring software
solutions to life. <br /><br />
<a href="./Me.html"><button type="button">About The Author</button></a>
</p>
</div>
</body>
</html>