You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
5 years ago | |
|---|---|---|
| .. | ||
| Q1 | 5 years ago | |
| Q2 | 5 years ago | |
| Q3 | 5 years ago | |
| Q4 | 5 years ago | |
| BusinessCard.PNG | 5 years ago | |
| README.md | 5 years ago | |
| html5-cheat-sheet.pdf | 5 years ago | |
README.md
Day 1 Exercise
Business Card
Useful html tags <header><article><footer><section>
Sample Output
D3.JS
Draw a scatter plot graph
Data = [ [ 10,15], [20,20], [5,20], [7,4], [22, 6] ]
Tips :
- Use SVG circles
- Scale data by 10 times
Additional References
- Making scatter Plot
- D3.js Practical Introduction
- Interactive chart with D3.js
- d3-scale
<script src="https://d3js.org/d3-scale.v3.min.js"></script>
- d3-axis
<script src="https://d3js.org/d3-axis.v2.min.js"></script>
Javascript
Create code to reverse a string
- Given string : "Hello!"
- Output: "!olleH"