-
🏠 Home here
-
🏁 Start UI project here
-
🔥 Start Firebase project here
-
✏️ [C]rud Operation here
-
📓 c[R]ud Operation here
-
📝 cr[U]d Operation here
-
🗑️ cru[D] Operation here
In an index.html
file we will have the following html code:
<div class="container p-4">
<div class="row">
<div class="col-md-4 offset-md-4">
<div class="card">
<div class="card-body">
<form id="task-form">
<div class="form-group">
<input
type="text"
id="task-title"
class="form-control"
placeholder="Task Title"
autofocus
/>
</div>
<div class="form-group">
<textarea
id="task-description"
rows="3"
class="form-control"
placeholder="Task Description"
></textarea>
</div>
<button type="submit" class="btn btn-primary" id="btn-task-form">
Save
</button>
</form>
</div>
</div>
</div>
</div>
</div>
In the same index.html
file, head section, you can add a Bootstrap/Bootswatch theme:
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/pulse/bootstrap.min.css">
More templates on Bootswatch and CDN links on BootstrapCDN
Home here
Next Step here