Advertisement
Guest User

Untitled

a guest
Jul 24th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.76 KB | None | 0 0
  1. <title>Ronald Morris Portfolio Website</title>
  2. <link rel="stylesheet" href="css/stylesheet.css" type="text/css">
  3. <link rel="normalize" href="normalize.css" type="text/css">
  4. </head>
  5. <body>
  6. <div class= "header-wrapper">
  7. <div class= "header-container">
  8. <a id="name" href="home.html" >Ronald Morris</a>
  9. <div class="nav">
  10. <nav>
  11. <div class= "nav-link-box"><a class= "nav-link" href="1">About</a></div>
  12. <div class= "nav-link-box"><a class= "nav-link" href="2">Projects</a></div>
  13. <div class= "nav-link-box"><a class= "nav-link" href="3">Contact</a></div>
  14. </ul>
  15. </nav>
  16. </div>
  17. </div><!-- end nav -->
  18. </div><!-- end header-wrapper -->
  19.  
  20. <div class= "main-wrapper">
  21. <div class = "main-container">
  22. <h1>About</h1>
  23. <p>Hello and welcome to my portfolio website. <br> I am an entry level developer in the process of learning web and app development.</p> <br>
  24.  
  25. <p>While wokring in the resturant/hospiatlity industry for most of my life i decided to try my hand at programming and development. It has gone from a fairly daunting task to one i feel is beccoming mroe and more obtainable. Though my skill are still in development i am currently proficient in HTML and CSS. I am also currently learning JavaScript, jQuery and Bootsrap 4.</p>
  26. <br>
  27. <p class= "quote">"Talk is cheap. Show me the code."<br>
  28. - Linus Torvalds</p>
  29. </div>
  30. </div>
  31. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
  32. </script>
  33. <script src="JS/transit.js"></script>
  34. <script src="JS/script.js"></script>
  35. </body>
  36. </html>
  37.  
  38.  
  39.  
  40. /* http://meyerweb.com/eric/tools/css/reset/
  41. v2.0 | 20110126
  42. License: none (public domain)
  43. */
  44.  
  45. html, body, div, span, applet, object, iframe,
  46. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  47. a, abbr, acronym, address, big, cite, code,
  48. del, dfn, em, img, ins, kbd, q, s, samp,
  49. small, strike, strong, sub, sup, tt, var,
  50. b, u, i, center,
  51. dl, dt, dd, ol, ul, li,
  52. fieldset, form, label, legend,
  53. table, caption, tbody, tfoot, thead, tr, th, td,
  54. article, aside, canvas, details, embed,
  55. figure, figcaption, footer, header, hgroup,
  56. menu, nav, output, ruby, section, summary,
  57. time, mark, audio, video {
  58. margin: 0;
  59. padding: 0;
  60. border: 0;
  61. font-size: 100%;
  62. font: inherit;
  63. vertical-align: baseline;
  64. }
  65. /* HTML5 display-role reset for older browsers */
  66. article, aside, details, figcaption, figure,
  67. footer, header, hgroup, menu, nav, section {
  68. display: block;
  69. }
  70. body {
  71. line-height: 1;
  72. }
  73. ol, ul {
  74. list-style: none;
  75. }
  76. blockquote, q {
  77. quotes: none;
  78. }
  79. blockquote:before, blockquote:after,
  80. q:before, q:after {
  81. content: '';
  82. content: none;
  83. }
  84. table {
  85. border-collapse: collapse;
  86. border-spacing: 0;
  87. }
  88.  
  89. /* FONTS */
  90. @font-face { font-family: "Adam"; src: url('fonts/Adam.otf');
  91. }
  92. @font-face { font-family: "Taylor"; src: url('fonts/taylor-Regular.ttf');
  93. }
  94. /* Header Styling */
  95. .push {
  96. clear: both;
  97. }
  98. #name {
  99. text-decoration: none;
  100. font-size: 55px;
  101. color: #000;
  102. font-family: "Adam" ;
  103. font-weight: bolder;
  104.  
  105. }
  106. .header-wrapper {
  107. width: 100%;
  108. background-color: #b82601;
  109. padding: 15px;
  110.  
  111. }
  112.  
  113. .header-container {
  114. width: 1170px;
  115. margin: 0 auto;
  116. }
  117.  
  118. .nav div a {
  119. text-decoration: none;
  120.  
  121. font-size: 35px;
  122. color: #000;
  123. font-family: "Adam";
  124.  
  125.  
  126. }
  127.  
  128. .nav-link-box {
  129. position: relative;
  130. height: 40px;
  131.  
  132. }
  133. .nav {
  134. float: right;
  135.  
  136. }
  137.  
  138. .nav div {
  139. display: inline;
  140.  
  141. }
  142.  
  143. /* Main styling */
  144.  
  145. .main-wrapper {
  146. width: 100%
  147. }
  148.  
  149. .main-container {
  150. width: 1170px;
  151. margin: 0 auto;
  152. text-align: center;
  153. }
  154.  
  155. .main-container h1 {
  156. font-size: 50px;
  157. font-weight: bolder;
  158. padding: 55px 0 15px 0;
  159. font-family: "Helvetica";
  160.  
  161.  
  162. }
  163. .main-container {
  164. font-family: "Helvetica";
  165. font-size: 25px;
  166. }
  167.  
  168. .quote {
  169. padding-top: 20%;
  170. font-style: italic;
  171. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement