-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2nd-major-commit: starting changes in app component
- Loading branch information
Showing
6 changed files
with
33 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
body{ | ||
min-width: 320px; | ||
padding: 0%; | ||
margin: 0%; | ||
} | ||
|
||
/* Main */ | ||
main{ | ||
margin-top: 100px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,21 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>To Do List</title> | ||
</head> | ||
<body class="container-fluid p-2 bg-primary"> | ||
<header> | ||
<h1 class="text-white">To Do List</h1> | ||
</header> | ||
<main class="text-center text-white bg-danger m-1"> | ||
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Laudantium, nobis fuga ab doloribus itaque autem tempora quod vero accusantium eos repudiandae alias! Impedit nostrum nobis omnis. Fuga sapiente beatae ea ab. Vitae, ullam neque saepe reiciendis ea mollitia nostrum hic quasi adipisci delectus commodi dicta molestiae doloribus aut in voluptatibus.</p> | ||
</main> | ||
<footer class="bg-primary"> | ||
<p class="text-white">This app has been made using Angular framework.</p> | ||
</footer> | ||
</body> | ||
</html> | ||
|
||
<header> | ||
<!-- Fixed Navbar --> | ||
<nav class="navbar fixed-top navbar-expand-lg navbar-dark bg-primary"> | ||
<a class="navbar-brand" href="#"> | ||
<img src="./assets/images/todo_list_icon.png" width="30" height="30" | ||
class="d-inline-block align-top bg-white rounded" alt="ToDoList icon"> | ||
<p class="text-white d-inline mt-0 font-weight-bold"> {{title}}</p> | ||
</a> | ||
</nav> | ||
</header> | ||
<main class="p-1"> | ||
<section class="p-1"> | ||
<div class="text-center text-white bg-danger m-1"> | ||
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Laudantium, nobis fuga ab doloribus itaque autem tempora quod vero accusantium eos repudiandae alias! Impedit nostrum nobis omnis. Fuga sapiente beatae ea ab. Vitae, ullam neque saepe reiciendis ea mollitia nostrum hic quasi adipisci delectus commodi dicta molestiae doloribus aut in voluptatibus.</p> | ||
</div> | ||
</section> | ||
</main> | ||
<footer class="bg-primary fixed-bottom text-center pt-2"> | ||
<p class="text-white">This app has been made using Angular framework. You can get its source code <a href="https://github.com/SidP919/Web-Development/tree/master/Angular/to_do_list" target="_blank" class="text-white">here</a></p> | ||
</footer> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters