diff options
author | adam <56338480+adastx@users.noreply.github.com> | 2022-08-07 22:03:39 +0200 |
---|---|---|
committer | adam <56338480+adastx@users.noreply.github.com> | 2022-08-07 22:03:39 +0200 |
commit | 0d96ad5b0b999814249d779a83b3f1230104f102 (patch) | |
tree | 4a52c1b2532449b2deb5c163159d33e4bd3a6467 /dst/ase.html | |
parent | 160c539fa2df9bc12337a0a671afcdcefa67eca6 (diff) |
Added head and body html tags
Diffstat (limited to 'dst/ase.html')
-rw-r--r-- | dst/ase.html | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/dst/ase.html b/dst/ase.html index c24b3e3..7b33885 100644 --- a/dst/ase.html +++ b/dst/ase.html @@ -1,13 +1,15 @@ <!DOCTYPE html> <html> -<meta charset="UTF-8"> -<meta name="viewport" content="width=device-width, initial-scale=1.0"> - -<title>Q1. Software Process Model - Waterfall — adast.xyz</title> -<link rel="icon" type="image/x-icon" href="/images/favicon.ico"> -<link rel="stylesheet" href="styles/style.css"> - -<p class="header"><a href="/">adast.xyz</a></p> + <head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + + <title>Q1. Software Process Model - Waterfall — adast.xyz</title> + <link rel="icon" type="image/x-icon" href="/images/favicon.ico"> + <link rel="stylesheet" href="styles/style.css"> + </head> + <body> + <p class="header"><a href="/">adast.xyz</a></p> <h1 id="q1.-software-process-model---waterfall">Q1. Software Process Model - Waterfall</h1> <h2 id="what-is-software-engineering-a-response-to">What is software engineering a response to?</h2> @@ -916,5 +918,6 @@ Makes the development and release process faster and more robust.</p> <p>Automated access to well defined environments. Tools like Docker for containerization or Virtual Machines.</p> -<p class="footer"><a href="/">adast.xyz</a></p> + <p class="footer"><a href="/">adast.xyz</a></p> + </body> </html> |