Advertisement
Guest User

profile.php

a guest
Mar 20th, 2022
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.19 KB | None | 0 0
  1.  
  2.  
  3. <!DOCTYPE html>
  4. <html lang="">
  5. <head>
  6. <title>Profil | PhilBook</title>
  7.  
  8.  
  9. </head>
  10. <style>
  11. #blue_bar{
  12.  
  13. height: 50px;
  14. background-color: #405d9b;
  15. color: #d9dfeb;
  16.  
  17. }
  18.  
  19. #search_box{
  20. width: 400px;
  21. height: 20px;
  22. border-radius: 5px;
  23. border: none;
  24. padding: 4px;
  25. font-size: 14px;
  26. }
  27.  
  28. #profile_pic{
  29. width: 150px;
  30. border-radius: 50%;
  31. border: solid 2px white;
  32. }
  33. #menu_buttons{
  34. width: 100px;
  35. display: inline-block;
  36. margin: 2px;
  37. }
  38.  
  39. #friends_img{
  40. width: 75px;
  41. float: left;
  42. margin: 8px;
  43. }
  44.  
  45. #friends_bar{
  46. background-color: white;
  47. min-height: 400px;
  48. margin-top: 20px;
  49. color: #aaa;
  50. padding: 8px;
  51. }
  52.  
  53. #friends{
  54. clear: both;
  55. font-size: 12px;
  56. font-weight: bold;
  57. color: #405d9b;
  58. }
  59.  
  60. textarea{
  61. width: 100%;
  62. border: none;
  63. font-family: Tahoma, serif;
  64. font-size: 14px;
  65. height: 60px;
  66. resize: none;
  67. }
  68.  
  69. #post_button{
  70.  
  71. float: right;
  72. background-color: #405d9b;
  73. border: none;
  74. color: white;
  75. padding: 4px;
  76. font-size: 14px;
  77. border-radius: 2px;
  78. width: 50px;
  79.  
  80. }
  81.  
  82.  
  83. #post_bar{
  84. margin-top: 120px;
  85. background-color: white;
  86. float: left;
  87. }
  88.  
  89.  
  90. </style>
  91.  
  92.  
  93. <body style="font-family: Tahoma,serif; background-color: #d0d8e4;">
  94. <br>
  95. <!--top bar -->
  96. <div id="blue_bar">
  97. <div style="margin: auto; width: 800px; font-size: 30px;">
  98.  
  99. PhilBook &nbsp &nbsp <label for="search_box"></label><input type="text" id="search_box" placeholder="Suche nach Personen">
  100. <img src="selfie.jpg" style="width: 50px; float: right; margin-bottom: 10px;" alt="Bild">
  101. </div>
  102.  
  103. </div>
  104. <!--cover-->
  105. <div id="content" style="width: 800px; margin: auto; min-height:400px;">
  106.  
  107. <div style="background-color: white; text-align: center; color: #405d9b">
  108. <img src="mountain.jpg" style="width: 100%;" alt="Bild">
  109. <img src="selfie.jpg" id="profile_pic" alt="Bild"><br>
  110. <div style="font-size: 20px;">Mary Bender</div>
  111. <br>
  112. <div id="menu_buttons">Zeitleiste</div>
  113. <div id="menu_buttons">Über</div>
  114. <div id="menu_buttons">Freunde</div>
  115. <div id="menu_buttons">Fotos</div>
  116. <div id="menu_buttons">Einstellungen</div>
  117.  
  118. </div>
  119. <!-- below -->
  120.  
  121. <div style="display: flex;">
  122. <!--freunde-->
  123. <div style="min-height: 400px;flex:1;">
  124.  
  125. <div id="friends_bar">
  126.  
  127. Freunde <br>
  128.  
  129. <div id="friends">
  130. <img src="user1.jpg" id="friends_img" alt="BILD">
  131. <br>
  132. Erster Nutzer
  133. </div>
  134. <div id="friends">
  135. <img src="user2.jpg" id="friends_img" alt="Bild">
  136. <br>
  137. Zweiter Nutzer
  138. </div>
  139. <div id="friends">
  140. <img src="user3.jpg" id="friends_img" alt="Bikld">
  141. <br>
  142. Dritter Nutzer
  143. </div>
  144. <div id="friends">
  145. <img src="user4.jpg " id="friends_img" alt="Bild">
  146. <br>
  147. Vierter Nutzer
  148. </div>
  149.  
  150. </div>
  151. </div>
  152.  
  153. <!--posts-->
  154. <div style="min-height: 400px; flex: 2.5; padding: 20px 0 20px 20px;">
  155. <div style="style="/*! border: solid thin #aaa; */ /*! padding: 10px; */ /*! background-color: white */""> </div>
  156.  
  157. <label>
  158. <textarea placeholder="Was möchtest du sagen?"></textarea>
  159. </label>
  160. <input type="submit" id="post_button" value="Posten">
  161. <br>
  162.  
  163.  
  164. </div>
  165. <!-- postsvonanderen-->
  166. <div id="post_bar">
  167. <div id="post">
  168. <div>
  169. <img src="user1.jpg" style="width: 75px;">
  170. </div>
  171.  
  172. </div>
  173.  
  174.  
  175. </div>
  176.  
  177. </body>
  178.  
  179.  
  180. </html>
  181.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement