Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.79 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>PageOne</title>
  5. <style>
  6. @import url("https://fonts.googleapis.com/css?family=Montserrat:400,800");
  7. @import url("https://fonts.googleapis.com/css?family=Varela+Round");
  8. body {
  9. margin: 0px;
  10. padding: 0px;
  11. font-family: "Varela Round", sans-serif;
  12. direction: rtl;
  13. text-align: center;
  14. }
  15. .header {
  16. background-color: #039be6;
  17. width: 100%;
  18. height: 50px;
  19. box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  20. text-align: center;
  21. }
  22. #header-name {
  23. color: #ffffff;
  24. font-size: 30px;
  25. line-height: 50px;
  26. }
  27. .bookmarkapp {
  28. font-size: 30px;
  29. font-weight: bold;
  30. color: #ff9f00;
  31. margin: 10px;
  32. }
  33. .details{
  34. font-size: 24px;
  35. font-weight: bold;
  36. }
  37. .title {
  38. font-size: 24px;
  39. font-weight: bold;
  40. margin: 20px;
  41. }
  42. .desc {
  43. font-size: 16px;
  44. width: 80%;
  45. margin: auto;
  46. }
  47. button {
  48. background-color: #ff9f00;
  49. border: none;
  50. font-family: "Varela Round", sans-serif;
  51. color: white;
  52. border-radius: 10px;
  53. padding: 14px 40px;
  54. text-align: center;
  55. text-decoration: none;
  56. display: inline-block;
  57. font-size: 16px;
  58. margin-top: 20px;
  59. font-weight:bold;
  60. cursor: pointer;
  61. }
  62.  
  63.  
  64. </style>
  65. </head>
  66. <body>
  67. <div class="header">
  68. <div id="header-name">PageOne</div>
  69. </div>
  70.  
  71. <div>
  72. <p class="bookmarkapp">Bookmark App</p>
  73. <p class="details">מגיש מתן גלעד</p>
  74. <p class="title">הסבר על האפליקציה:</p>
  75. <p class="desc">
  76. האפליקציה שלי היא אפלקציה של מועדפים לאתרים. ניתן להרשם לאפליקציה
  77. ולהוסיף אתרים תחת אותו משתמש שמחובר וניתן לגשת לאתרים שנוספו למשתמש מכל
  78. מכשיר אנדרואיד אם מתחברים לאותו משתמש. אני שומר את כל הנתונים על האתרים
  79. ב-DataBase של Firebase וכך יכול לטעון את הנתונים על האתרים מכל מכשיר
  80. אנדרואיד.
  81. </p>
  82. <p class="title">סרטון הסבר על האפליקציה:</p>
  83. <video width="380px" controls>
  84. <source
  85. src="https://firebasestorage.googleapis.com/v0/b/project-e6025.appspot.com/o/Video.mp4?alt=media&token=e82802f0-e24c-434e-a199-bd033ed7f9cb"
  86. type="video/mp4"
  87. />
  88. Your browser does not support the video tag.
  89. </video>
  90. </div>
  91.  
  92. <button
  93. onclick="window.location.href='PageTwo.html'"
  94. target="_self"
  95. type="button"
  96. >
  97. הבא
  98. </button>
  99. </body>
  100. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement