Advertisement
Guest User

Untitled

a guest
Jul 25th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.96 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <html>
  4. <head>
  5. <title>Daniel's Portfolio | Welcome</title>
  6. <link rel="stylesheet" href="CSS/bootstrap.min.css">
  7. <link rel="stylesheet" href="CSS/style.css">
  8. <link href="https://fonts.googleapis.com/css?family=Orbitron" rel="stylesheet">
  9. </head>
  10. <body>
  11. <div class="pageOne text-center">
  12. <ul class = "nav nav-pills">
  13. <li>
  14. <a href="#">Daniel Collins</a>
  15. </li>
  16. <li class="pull-right">
  17. <a href="#">Contact Me</a>
  18. </li>
  19. <li class="pull-right">
  20. <a href="#">Portfolio</a>
  21. </li>
  22. <li class="pull-right">
  23. <a href="#">About Me</a>
  24. </li>
  25. </ul>
  26.  
  27. <div class="block text-center">
  28. <h1>Daniel's Portfolio Website</h1>
  29. <h2>Various Projects</h2>
  30. </div>
  31. <div class = "btnList text-center">
  32. <a class = "btn btn-default" href="#">Reddit</a>
  33. <a class = "btn btn-default" href="#">GitHub</a>
  34. <a class = "btn btn-default" href="#">Linkedin</a>
  35. <a class = "btn btn-default" href="#">Facebook</a>
  36. </div>
  37. </div>
  38. <div class= "pageTwo">
  39. <div class= "col-md-6 pageTwoblock">
  40. <div class="row">
  41. <div class ="text-center">
  42. <h1>Daniel Collins</h1>
  43. <p>
  44. Iā€™m a web developer and designer living in Jacksonville, Florida, United States. I spend my days with my hands in many
  45. different areas of web development from back end programming (PHP, C#, Java) to front end engineering
  46. (HTML, CSS, and jQuery/Javascript), digital accessibility, user experience and visual design.
  47. </p>
  48. </div>
  49. </div>
  50. </div>
  51. <div class="me">
  52.  
  53. </div>
  54. </div>
  55. <div class= "pageThree">
  56.  
  57. </div>
  58. </body>
  59. </html>
  60.  
  61. body{
  62. background-color: white;
  63. font-family:Orbitron;
  64. color:white;
  65. }
  66.  
  67. .block{
  68. background-color: #337ab7;
  69. opacity: .7;
  70. padding:10px;
  71. width:50%;
  72. margin-right: auto;
  73. margin-left: auto;
  74. border-radius:5px;
  75. }
  76.  
  77. .nav-pills{
  78. font-size: 1.7em;
  79. background-color: none;
  80. margin-bottom: 10%;
  81. }
  82.  
  83. h1{
  84. padding:0;
  85. margin-top: 0px;
  86. font-size: 5.0em;
  87. }
  88.  
  89. .btn-default{
  90. font-size:1.7em;
  91. color:#337ab7;
  92. }
  93.  
  94.  
  95. .pageOne{
  96. background: url("../images/mountains.jpg");
  97. background-repeat: none;
  98. background-size: cover;
  99. display: inline-block;
  100. height: 1000px;
  101. width: 100%;
  102. }
  103.  
  104. /*
  105. parallax effect start
  106. */
  107. .pageOne, .pageThree{
  108. position: relative;
  109. opacity: .7;
  110. background-position: center;
  111. background-size: cover;
  112. background-repeat: no-repeat;
  113. background-attachment: fixed;
  114. }
  115.  
  116. /*
  117. parallax effect end
  118. */
  119.  
  120. .pageTwo{
  121. background: url("../images/darkmountains.jpg");
  122. background-repeat: none;
  123. background-size: cover;
  124. display: inline-block;
  125. height: 1000px;
  126. width: 100%;
  127. padding-top: 5%;
  128. }
  129.  
  130. .pageTwoblock{
  131. background-color: #008B8B;
  132. opacity: .7;
  133. border-radius:5px;
  134. }
  135.  
  136. p{
  137. font-size: 2.5em;
  138. }
  139.  
  140. .me{
  141. height:850px;
  142. display:block;
  143. margin-right: auto;
  144. margin-left: auto;
  145.  
  146. }
  147.  
  148. .pageThree{
  149. background: url("../images/mountainslowview.jpg");
  150. background-repeat: none;
  151. background-size: cover;
  152. display: inline-block;
  153. height: 1000px;
  154. width: 100%;
  155. padding-top:5%;
  156. }
  157.  
  158. [![Page 1 and Page 2 transition][1]][1]
  159. [![Page 2 and Page 3 transition][2]][2]
  160. [![Page 3 bottom][3]][3]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement