Full repository here.
This file contains hidden or 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
| <template> | |
| <div> | |
| <br> | |
| <div class="row row-cols-1 row-cols-md-2"> | |
| <div class="col mb-4"> | |
| <div class="card"> | |
| <div v-if="imageData!=null"> | |
| <img :src="idPicture" class="card-img-top" alt="#"> | |
| </div> | |
This file contains hidden or 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
| Html Syntax | |
| -trees: type of data | |
| - parent ( Parent to siblings) | |
| - child ; child | |
| -<div> : division : groups content together | |
| -<div> content </div> : content is just not text , can be anything . therefore div is the parent to content inside | |
| Html Structure Part 2 | |
| -doctype: describes type of htl | |
| - different types (html: common) | |
| -<head></head> : describes meta information about site ( site title , links) |
First, you'll need NodeJS and NPM:
sudo apt install curl
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
sudo apt-get install -y nodejs
nodejs -v
v8.4.0