Advertisement
tastypastry

Untitled

Jan 21st, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.62 KB | None | 0 0
  1. CSS-
  2. h2{font-size: 30px;
  3. font-family: Lobster;
  4. }
  5.  
  6. body{background-color:grey;
  7. }
  8.  
  9. .box{
  10. border-style: dotted solid double dashed;
  11. border-width: 5px;
  12. }
  13.  
  14.  
  15. .purple-box{
  16. background-color: purple;
  17. padding-top: 20px;
  18. padding-bottom: 0px;
  19. margin-top:-10px;
  20. padding-left: 40px;
  21. }
  22.  
  23. .blue-box{
  24. background-color: blue;
  25. text-align: center;
  26. }
  27.  
  28. img{width: 10%}
  29.  
  30. ul{
  31. list-style-type: none;
  32. margin:0;
  33. padding:0;
  34. overflow:hidden;
  35. background-color:light-purple;
  36. }
  37.  
  38. li{
  39. float: right;
  40. }
  41.  
  42. li a{
  43. display:block;
  44. color:white;
  45. text-align: center;
  46. padding:14px 16px;
  47. font-family:Helvetica;
  48. font-size: 19px;
  49. }
  50.  
  51.  
  52. HTML-
  53. <link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet" type="text/css">
  54.  
  55. <link rel="stylesheet" href="css/main.css">
  56.  
  57.  
  58.  
  59. <body>
  60. <div class="container-fluid">
  61.  
  62. <h2 class="box purple-box"> Free Code Camp Portfolio
  63. <ul><li><a href="#contact">Contact</a></li>
  64. <li><a href="#about">About</a></li>
  65. <li><a class="active" href="#home">Home</a></li>
  66.  
  67. </h2>
  68.  
  69. <div class="row">
  70.  
  71. <div class="col-sm-2">
  72. <img
  73. src="https://i.imgur.com/eAkJaqJ.jpg"
  74. alt="Me at my school's Logic Lab"
  75. >
  76. </div>
  77.  
  78. <div class="col-sm-2">
  79. <img
  80. src="https://i.imgur.com/Ph6hEuQ.png"
  81. alt="snowy"
  82. >
  83.  
  84. </div>
  85. <div class="col-sm-2">
  86. <img src="https://i.imgur.com/G6C6kAA.png"
  87. alt="Zeta"
  88. >
  89. </div>
  90. </div>
  91. </div>
  92. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement