Jump to content

Nill

Members
  • Posts

    9
  • Joined

  • Last visited

Profile Information

  • Gender
    Female
  • Location
    Lithuania

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Nill's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. Nill

    upload

    I am beginner.I want the user to be able to upload a picture and write a comment on the web page. Can it be written with javascript or php? Thanks.
  2. Nill

    schema.org

    Hi, here is my website http://semantine.eu/nezenklinta.html If i'm writing in line 17 <body itemscope itemtype="http://schema.org/Article"> ...................</body> and checking with Structured Data Testing Tool (https://search.google.com/structured-data/testing-tool) I see Article All (1)arrow_drop_down Article5 KLAIDOS2 ĮSPĖJIMAIexpand_less @type Article cancel author Būtina nurodyti lauko author vertę. cancel datePublished Būtina nurodyti lauko datePublished vertę. cancel headline Būtina nurodyti lauko headline vertę. cancel image Būtina nurodyti lauko image vertę. cancel publisher Būtina nurodyti lauko publisher vertę. warning dateModified Rekomenduojama užpildyti lauką dateModified. Pateikite vertę, jei yra. warning mainEntityOfPage Rekomenduojama užpildyti lauką mainEntityOfPage. Pateikite vertę, jei yra. if I'm writting <body itemscope itemtype="http://schema.org/Course"> I see Course All (1)arrow_drop_down Course2 KLAIDOS1 ĮSPĖJIMASexpand_less @type Course cancel description Būtina nurodyti lauko description vertę. cancel name Būtina nurodyti lauko name vertę. warning provider Rekomenduojama užpildyti lauką provider. Pateikite vertę, jei yra. if i'm writing <body itemscope itemtype="http://schema.org/Book"> <body itemscope itemtype="http://schema.org/DigitalDocument"> <body itemscope itemtype="http://schema.org/MediaObject"> <body itemscope itemtype="http://schema.org/WebPage"> <body itemscope itemtype="http://schema.org/VisualArtwork"> and other, I see Aptikta 0 KLAIDŲ 0 ĮSPĖJIMŲ 0 ELEMENTŲ Why is that?Why not every type of data is markup Google Structured Data Testing Tool? Thank you. s.docx
  3. Nill

    Search Console

    Hello, I need help. Why do i see bugs? Thank you. http://semantine.eu/zenklinta.html http://semantine.eu/nezenklinta.html c.docx
  4. Nill

    Button

    Thanks, I have already solved it.
  5. Nill

    Button

    Hello, I need help. I am beginner.<!DOCTYPE html> <html lang="lt"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style type="text/css"> button{ position: relative; top: 26px; width:30px; background-color:#ffffff; border:none; } button i i{ display: inline-block; width: 2px; height: 20px; background:#00B875; animation: mymove 1.2s infinite; } .play1 {animation-timing-function: cubic-bezier(0.25,0.1,0.25,1);} .play2 {animation-timing-function: cubic-bezier(0.42,0,1,1);} .play3 {animation-timing-function: cubic-bezier(0,0,0.58,1);} .play4 {animation-timing-function: cubic-bezier(0.42,0,0.58,1);} .play5 {animation-timing-function: cubic-bezier(0,0,0.58,1);} @keyframes mymove { from {height: 6px;} to {height: 12px;} } .pause1 {animation-timing-function: step-end;} .pause2 {animation-timing-function: step-end;} .pause3 {animation-timing-function: step-end;} .pause4 {animation-timing-function: step-end;} .pause5 {animation-timing-function: step-end;} </style> </head> <body> <button onclick="myFunction()"> <i id = 1 class="play"> <i class="play1"></i> <i class="play2"></i> <i class="play3"></i> <i class="play4"></i> <i class="play5"></i> </i> <i id = 2 class="pause"> <i class="pause1"></i> <i class="pause2"></i> <i class="pause3"></i> <i class="pause4"></i> <i class="pause5"></i> </i> </div> </button> <script> var myVideo = document.getElementById("9"); var isPlaying = false; function myFunction(){ if (isPlaying) { myVideo.pause(); document.getElementById("1").style.opacity = "0"; } else { myVideo.play(); document.getElementById("2").style.opacity = "0"; } }; myVideo.onplaying = function() { isPlaying = true; }; myVideo.onpause = function() { isPlaying = false; }; </script> </body> </html> There are two buttons here, it's not good. Thank you.
  6. Hello, I wrote a web page, checked Markup Validation Service(https://validator.w3.org/) , results = Document checking completed. No errors or warnings to show, Structured Data Testing Tool results (https://search.google.com/structured-data/testing-tool) , Results = 0 Error. The second step into added Schema.org markup and re-check: Structured Data Testing Tool, results Error = 0, Markup Validation Service, results = 40 errors. Is it how it should be? Do Schema.org markup Markup Validation Service will always show as a Errors? Does anyone know of a tool to test Schema.org (http://schema.org/) markup? What is the correct syntax schema.org? Thank you.
×
×
  • Create New...