google.php 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <!DOCTYPE html>
  2. <!--
  3. Autor : Herley Ramos
  4. Data : 22/12/2017
  5. Projeto: Dicas
  6. Meta : Organizar as dicas do Google (agora neste html, antes em OOo)
  7. -->
  8. <?php
  9. include("cabecalho.php");
  10. ?>
  11. <section>
  12. <!--google-->
  13. <h1>Dicas do Google</h1>
  14. <h2>Google Fonts</h2>
  15. <h3>Visualize os fontes de letra a incluir na sua aplicação</h3>
  16. <h4>Procedimento</h4>
  17. <div class="box sombra">
  18. <a href="https://fonts.google.com/" target="_blank" class="a">https://fonts.google.com/</a><br/>
  19. </div>
  20. <h3>dentro da página escolha um fonte, copie o nome e consulte a API do Google</h3>
  21. <h4>Procedimento</h4>
  22. <div class="box sombra">
  23. http://fonts.googleapis.com/css?family=[cole o nome aqui]<br/>
  24. </div>
  25. <h3>para a fonte 'Arvo' vai ficar assim:</h3>
  26. <h4>Link</h4>
  27. <div class="box sombra">
  28. <a href="http://fonts.googleapis.com/css?family=Arvo" target="_blank" class="a">http://fonts.googleapis.com/css?family=Arvo</a><br/>
  29. </div>
  30. <h3>copie (ctrl + c) a o idioma que quiser e cole no CSS, exemplo:</h3>
  31. <h4>Código</h4>
  32. <div class="box sombra">
  33. /* latin */<br/>
  34. @font-face {<br/>
  35. font-family: 'Arvo';<br/>
  36. font-style: normal;<br/>
  37. font-weight: 400;<br/>
  38. src: local('Arvo'), url(http://fonts.gstatic.com/s/arvo/v10/J0GYVYTizO1mjpT3aOcSbQ.woff2) format('woff2');<br/>
  39. unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2212, U+2215;<br/>
  40. }<br/>
  41. </div>
  42. <h3>veja a informação sobre o uso da fonte 'Arvo'</h3>
  43. <h4>Link</h4>
  44. <div class="box sombra">
  45. <a href="https://fonts.google.com/?selection.family=Arvo&category=Serif" target="_blank" class="a">https://fonts.google.com/?selection.family=Arvo&category=Serif</a><br/>
  46. </div>
  47. <h3>veja a definição do font-family e use do mesmo modo no seu CSS</h3>
  48. <h4>Código</h4>
  49. <div class="box sombra">
  50. font-family: 'Arvo', serif;<br/>
  51. </div>
  52. </section>
  53. <?php
  54. include("rodape.php");
  55. ?>