Best software platform for cricket clubs and leagues. Manage the cricket website, registrations, payments, schedules, tournaments, teams, and players. Lets start with the Cricket Trader and progress to Trading Mindset. Then the bonus discount offer! Millions are bet everyday on Cricket around the world especially T20, 3 hours of rapidly changing. 'SportzXchange is my favorite fantasy cricket app! Its got better features than other fantasy sports apps and you can win big without paying any fees. Dec 19, 2020 For all the cricket and football fans out there, we have the best list of whatsapp groups. Whether you are a Virat Kohli, Dhoni, Messi or Ronaldo fan, we've got a group for each of you. There are also groups which provide latest news updates related to your favourite sport.
HTML 5 : Hands on Assignments
Assignment 1:- 1.Create a HTML5 web page which is used for a Stock Trading App Requirements:
- The stock ticker symbol and price as below should be displayed in a table format
- The Stock trading form below should allow the user to enter the TICKER symbol and the quantity of shares that the user wishes to purchase.
- The shares/stocks can be purchased only in block of 10s (ie10 shares, 20 shares, 30 shares….). Validate that the ‘quantity' input can only take numbers as its value and min is 10 and max is 100 and can be bought only in blocks of 10s as discussed earlier.
HTML Code:
Stock Trading
</span></p><p><span>table, td {</span></p><p><span> border: 1px solid black;</span></p><p><span>}</span></p><p><span>
</span></p><p><span>function validateForm() {</span></p><p><span> var x = document.forms['myForm']['lname'].value;</span></p><p><span> if (</span><span>x!=10 && x!=20 && x!=30 && x!=40 && x!=50 && x!=60 && x!=70 && x!=80 && x!=90 && x!=100</span><span>) {</span></p><p><span> alert('The shares/stocks can be purchased only in block of 10s (ie 10 shares, 20 shares, 30 shares….)and quantity can only take numbers as its value and min is 10and max is 100');</span></p><p><span> return false;</span></p><p><span> }</span></p><p><span>}</span></p><p><span>
Ticker: WIPRO INFY TCS TECHM Quantity:
Assignment 2: Create a Web Page for an Event Management Company 'Xena Events' which is conducting a hot balloon riding event from Feb 28th 2017 onwards for 5 days. The Web Page should have the below:
- Heading with appropriate name and logo.
- A form where people can register for this event with the below details:
- Name :should allow only alphabets.
- Age : should be equal to or greater than 18.
- Email ID : should be a valid email id format d. City: On clicking on the text box, Should display a list that contains city names as 'Rajkot', 'Vizag' and 'Bangalore' but whatever the user enters also should be shown in the list Note: All entries are 'mandatory'.
HTML Code:
</span></p><p><span>function validateForm() {</span></p><p><span>if (!/^[a-zA-Z]*$/g.test(document.myForm.name.value)) </span></p><p><span>{</span></p><p><span> alert('Name should only have alphabets');</span></p><p><span> document.myForm.name.focus();</span></p><p><span> return false;</span></p><p><span>}</span></p><p><span>var y = document.forms['myForm']['age'].value;</span></p><p><span>if(y>=18)</span></p><p><span>{</span></p><p><span> return true;</span></p><p><span>}</span></p><p><span>else</span></p><p><span>{</span></p><p><span> alert(' Age should be equal to or greater than 18″);</span></p><p><span> return false;</span></p><p><span>}</span></p><p><span>}</span></p><p><span>function validateEmail(emailField){</span></p><p><span> var reg = /^([A-Za-z0-9_-.])+@([A-Za-z0-9_-.])+.([A-Za-z]{2,4})$/;</span></p><p><span> if (reg.test(emailField.value) false) </span></p><p><span> {</span></p><p><span> alert(‘Invalid Email Address');</span></p><p><span> return false;</span></p><p><span> }</span></p><p><span>return true;</span></p><p><span>}</span></p><p><span>
Hot Balloon Riding Event
Hyderabad Rajkot Rajkot Chennai Goa UP Kerela Coimbatore Vizag BangaloreName:
Age:
Email ID:
City:
Assignment-3:- Create a Web Page with two horizontal sections.
- The top horizontal section should have the heading 'Awesome Online videos' along with an image acting as a logo.
- The bottom horizontal section should have a view area to play the video of the week.
- Under the view area, there should be only 2 buttons 'play' and 'pause' which the user can use to play or pause the video of the week.
HTML Code:
Frame.html
My Cricket App Log In
Top.html
Awesome Online videos
Main.html
Awesome Online videos
Cricket Trading App Online
Assignment 4: For the BCCI (Board of Control for Cricket in India) web page, we need to show a line chart for the batting statistics of the Indian team for a T20 cricket match. The details are as follows: Over 5, 10, 15 and Runs 40, 75, 140
HTML Code:
</span></p><p><span>window.onload = function () {</span></p><p><span>var chart = new CanvasJS.Chart('chartContainer', {</span></p><p><span>animationEnabled: true,</span></p><p><span>theme: 'light2',</span></p><p><span>axisX:{</span></p><p><span>minimum: 4,</span></p><p><span>maximum: 20</span></p><p><span>},</span></p><p><span>axisX:{</span></p><p><span>title : 'Over'</span></p><p><span>},</span></p><p><span>axisY:{</span></p><p><span> title : 'Runs'</span></p><p><span> },</span></p><p><span> data: [{ </span></p><p><span>type: 'line',</span></p><p><span>indexLabelFontSize: 16,</span></p><p><span>dataPoints: [</span></p><p><span>{ y: 40 , x: 5},</span></p><p><span>{ y: 75 , x: 10},</span></p><p><span>{ y: 140 , x: 15}</span></p>
HTML 5 : Hands on Assignments
Assignment 1:- 1.Create a HTML5 web page which is used for a Stock Trading App Requirements:
- The stock ticker symbol and price as below should be displayed in a table format
- The Stock trading form below should allow the user to enter the TICKER symbol and the quantity of shares that the user wishes to purchase.
- The shares/stocks can be purchased only in block of 10s (ie10 shares, 20 shares, 30 shares….). Validate that the ‘quantity' input can only take numbers as its value and min is 10 and max is 100 and can be bought only in blocks of 10s as discussed earlier.
HTML Code:
Stock Trading
</span></p><p><span>table, td {</span></p><p><span> border: 1px solid black;</span></p><p><span>}</span></p><p><span>
</span></p><p><span>function validateForm() {</span></p><p><span> var x = document.forms['myForm']['lname'].value;</span></p><p><span> if (</span><span>x!=10 && x!=20 && x!=30 && x!=40 && x!=50 && x!=60 && x!=70 && x!=80 && x!=90 && x!=100</span><span>) {</span></p><p><span> alert('The shares/stocks can be purchased only in block of 10s (ie 10 shares, 20 shares, 30 shares….)and quantity can only take numbers as its value and min is 10and max is 100');</span></p><p><span> return false;</span></p><p><span> }</span></p><p><span>}</span></p><p><span>
Ticker: WIPRO INFY TCS TECHM Quantity:
Assignment 2: Create a Web Page for an Event Management Company 'Xena Events' which is conducting a hot balloon riding event from Feb 28th 2017 onwards for 5 days. The Web Page should have the below:
- Heading with appropriate name and logo.
- A form where people can register for this event with the below details:
- Name :should allow only alphabets.
- Age : should be equal to or greater than 18.
- Email ID : should be a valid email id format d. City: On clicking on the text box, Should display a list that contains city names as 'Rajkot', 'Vizag' and 'Bangalore' but whatever the user enters also should be shown in the list Note: All entries are 'mandatory'.
HTML Code:
</span></p><p><span>function validateForm() {</span></p><p><span>if (!/^[a-zA-Z]*$/g.test(document.myForm.name.value)) </span></p><p><span>{</span></p><p><span> alert('Name should only have alphabets');</span></p><p><span> document.myForm.name.focus();</span></p><p><span> return false;</span></p><p><span>}</span></p><p><span>var y = document.forms['myForm']['age'].value;</span></p><p><span>if(y>=18)</span></p><p><span>{</span></p><p><span> return true;</span></p><p><span>}</span></p><p><span>else</span></p><p><span>{</span></p><p><span> alert(' Age should be equal to or greater than 18″);</span></p><p><span> return false;</span></p><p><span>}</span></p><p><span>}</span></p><p><span>function validateEmail(emailField){</span></p><p><span> var reg = /^([A-Za-z0-9_-.])+@([A-Za-z0-9_-.])+.([A-Za-z]{2,4})$/;</span></p><p><span> if (reg.test(emailField.value) false) </span></p><p><span> {</span></p><p><span> alert(‘Invalid Email Address');</span></p><p><span> return false;</span></p><p><span> }</span></p><p><span>return true;</span></p><p><span>}</span></p><p><span>
Hot Balloon Riding Event
Hyderabad Rajkot Rajkot Chennai Goa UP Kerela Coimbatore Vizag BangaloreName:
Age:
Email ID:
City:
Assignment-3:- Create a Web Page with two horizontal sections.
- The top horizontal section should have the heading 'Awesome Online videos' along with an image acting as a logo.
- The bottom horizontal section should have a view area to play the video of the week.
- Under the view area, there should be only 2 buttons 'play' and 'pause' which the user can use to play or pause the video of the week.
HTML Code:
Frame.html
My Cricket App Log In
Top.html
Awesome Online videos
Main.html
Awesome Online videos
Cricket Trading App Online
Assignment 4: For the BCCI (Board of Control for Cricket in India) web page, we need to show a line chart for the batting statistics of the Indian team for a T20 cricket match. The details are as follows: Over 5, 10, 15 and Runs 40, 75, 140
HTML Code:
</span></p><p><span>window.onload = function () {</span></p><p><span>var chart = new CanvasJS.Chart('chartContainer', {</span></p><p><span>animationEnabled: true,</span></p><p><span>theme: 'light2',</span></p><p><span>axisX:{</span></p><p><span>minimum: 4,</span></p><p><span>maximum: 20</span></p><p><span>},</span></p><p><span>axisX:{</span></p><p><span>title : 'Over'</span></p><p><span>},</span></p><p><span>axisY:{</span></p><p><span> title : 'Runs'</span></p><p><span> },</span></p><p><span> data: [{ </span></p><p><span>type: 'line',</span></p><p><span>indexLabelFontSize: 16,</span></p><p><span>dataPoints: [</span></p><p><span>{ y: 40 , x: 5},</span></p><p><span>{ y: 75 , x: 10},</span></p><p><span>{ y: 140 , x: 15}</span></p><img src='https://cdn.newsapi.com.au/image/v1/bee2becf271e33f5525291d56d538a67' alt='Cricket' title='Cricket'><p><span>]</span></p><p><span>}]</span></p><p><span>});</span></p><p><span>chart.render();</span></p><p><span>}</span></p><p><span>