Html 如何使用CSS将这些设置居中<;部门>';谁在使用引导?

Html 如何使用CSS将这些设置居中<;部门>';谁在使用引导?,html,css,Html,Css,下面是一个例子,说明目前有多少网页在第1节中出现 我怎样才能居中“fa-fa-angle down”使其位于页面的底部中心 我如何将以下内容放在中心 <div class="profile box"> <div class="shape"></div> <div class="shape2"> 嗨,我解决你的问题,你可以检查以下代码。 我更改了你的代码,你可以检查一下。 .nav标题更改及以上形状div添加表格

下面是一个例子,说明目前有多少网页在第1节中出现

我怎样才能居中
“fa-fa-angle down”
使其位于页面的底部中心

我如何将以下内容放在中心

<div class="profile box">
         <div class="shape"></div>
         <div class="shape2">

嗨,我解决你的问题,你可以检查以下代码。 我更改了你的代码,你可以检查一下。 .nav标题更改及以上形状div添加表格组div

<head>
  <html lang="en">
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Liam Docherty Digital Portfolio</title>
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
  <link rel="stylesheet" href="css/style.css">

  <style>
    body {
      margin: 0;
      padding: 0;
    }

    .navbar.navbar-default {
      background-color: #4D5061;
      height: 10vh;
      z-index: 100;
    }

    .navbar.navbar-default ul {
      list-style-type: none;
      text-align: right;
    }

    .navbar.navbar-default ul li {
      display: inline-block;
    }

    .dropdown-menu li {
      text-align: center
    }

    .dropdown .dropdown-menu {
      background-color: #4D5061;
    }

    .dropdown .dropdown-menu a {
      color: white;
    }

    .navbar.navbar-default ul li a {
      display: inline-block;
      padding: 3.5vh 8px 4px;
      color: white;
      text-decoration: none;
      font-size: 14pt;
      font-family: 'Roboto', sans-serif;
    }

    .navbar.navbar-default ul li:after {
      content: '';
      position: absolute;
      right: 50%;
      bottom: 0;
      left: 50%;
      height: 3px;
      background-color: #FFFFFF;
      border-radius: 9px;
      transition: all .2s;
    }

    .navbar.navbar-default ul li a:hover {
      color: white;
      background-color: rgba(20, 50, 40, 0.5)
    }

    .nav.navbar-nav,
    .nav.navbar-nav>li {
      float: none;
    }

    .navbar.navbar-default ul li:hover:after {
      right: 0;
      left: 0;
    }

    .nav-title {
    font-size: 14pt;
    margin: 0;
    top: 13px;
    left: 45px;
    width: 100%;
    position: absolute;
    text-align: center;
    color: white;
    font-family: 'Roboto', sans-serif;
    }

    .navbar.navbar-default ul.dropdown-menu li,
    .navbar.navbar-default ul.dropdown-menu li a {
      position: relative;
      display: block;
    }

    #logo {
      padding-top: 2vh;
      padding-left: 20px;
      float: left;
    }

    .hero {
      background: url("https://static.pexels.com/photos/48727/pexels-photo-48727.jpeg") center center no-repeat;;
      background-attachment: fixed;
      position: relative;
      background-size: cover;
      width: 100%;
      max-width: 100%;
      width: 100vw;
      height: 100%;
    }

    section {
      position: relative;
      height: 95vh;
    }

    .section1 {
      height: 100vh;
      text-align: center;
      color: white;
    }

    .section2 {
      background-color: #11B5E4;
      text-align: center;
      color: white;
    }

    .section3 {
      background-color: #FFFFFF;
      text-align: center;
      color: white;
      height: 90vh;
    }

    .fa-angle-down {
      color: #4D5061;
      position: absolute;
      bottom: 0px;
    }

    .fa-angle-up {
      color: #4D5061;
      position: absolute;
      bottom: 0px;
    }

    .footer {
      height: 3vh;
      background-color: #4D5061;
      padding: 0;
      right: 0;
      bottom: 0;
      left: 0;
    }

    .footertext {
      font-size: 14pt;
      color: white;
      font-family: 'Roboto', sans-serif;
      text-align: center;
    }

    .profile.box {
      bottom: 0;
      height: 50%;
      left: 0;
      margin: auto;
      position: absolute;
      right: 0;
      top: 0;
      width: 50%;
    }

    .shape {
      border-radius: 25px;
      display: inline-block;
      background: #4D5061;
      content: url(http://i1126.photobucket.com/albums/l611/ldocherty1/IMG_0730_zpsiz4dqc47.jpg);
      color: white;
      height: 250px;
      margin: auto;
      padding: 3px;
      width: 250px;
    }

    .shape2 {
      background: linear-gradient(35deg, #4D5061, #4D5061);
      border-radius: 85px;
      color: white;
      height: 40px;
      margin: 1% auto;
      opacity: 0.9;
      display: inline-block;
      padding: 0px;
      width: 250px;
    }

  </style>

</head>

<body>
  <nav class="navbar navbar-default navbar-fixed-top">
    <div class="container-fluid">
      <!-- Brand and toggle get grouped for better mobile display -->
      <div class="navbar-header">
        <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
                        <span class="sr-only">Toggle navigation</span>
                        <span class="icon-bar"></span>
                        <span class="icon-bar"></span>
                        <span class="icon-bar"></span>
                    </button>
        <a class="navbar-brand" href="#"><img src="http://placehold.it/60x60" alt="Your Brand Name"></a>
        <h1 class="nav-title">Liam Docherty's Digital Portfolio</h1>
      </div>
      <!-- Collect the nav links, forms, and other content for toggling -->
      <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
        <ul class="nav navbar-nav">
          <li><a href="#">Home</a>
          </li>
          <li class="dropdown">
            <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="true">About Me <span class="caret"></span></a>
            <ul class="dropdown-menu">
              <li><a href="#">Action</a>
              </li>
              <li><a href="#section3">Contact</a>
              </li>
              <li><a href="#">Something else here</a>
              </li>
              <li><a href="#">Separated link</a>
              </li>
              <li><a href="#">One more separated link</a>
              </li>
            </ul>
          </li>
          <li class="dropdown">
            <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Units <span class="caret"></span></a>
            <ul class="dropdown-menu">
              <li><a href="#">Action</a>
              </li>
              <li><a href="#">Another action</a>
              </li>
              <li><a href="#">Something else here</a>
              </li>

              <li><a href="#">Separated link</a>
              </li>

              <li><a href="#">One more separated link</a>
              </li>
            </ul>
          </li>
          <li><a href="#">Clients</a>
          </li>
          <li><a href="#contact-me">Contact Me</a>
          </li>
        </ul>
      </div>
      <!-- /.navbar-collapse -->
    </div>
    <!-- /.container-fluid -->
  </nav>


  <section id="section1" class="section1">
    <div class="hero">
      <div class="row">
        <div class="col-sm-6 col-sm-offset-3" style="background-color:pink;">
          <div class="profile box">
          <div class="form-group">
            <div class="shape"></div>
            </div>
            <div class="form-group">
            <div class="shape2">
              <p>kjjjjjjjjjkjjjkkjkj</p>
            </div>
            </div>
          </div>
        </div>
      </div>
    </div>





    <a href="#section2"><i class="fa fa-angle-down" style="font-size:100px;"></i></a>

  </section>
  <section id="section2" class="section2">


    <a href="#contact-me"> <i class="fa fa-angle-down" style="font-size:100px;"></i></a>

  </section>

  <section id="contact-me" class="contact_section section3">


    <a href="#section1"> <i class="fa fa-angle-up" style="font-size:100px;"></i></a>

  </section>
  <script src="https://code.jquery.com/jquery-3.1.1.js" integrity="sha256-16cdPddA6VdVInumRGo6IbivbERE8p7CQR3HzTBuELA=" crossorigin="anonymous"></script>
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>

  <footer>
    <div class="footer">
      <h2 class="footertext">Copyright © 2017 Liam Docherty's Site. All rights reserved.</h2>
    </div>
  </footer>
</body>

</html>

利亚姆·多切蒂数字投资组合
身体{
保证金:0;
填充:0;
}
.navbar.navbar-default{
背景色:#4D5061;
高度:10vh;
z指数:100;
}
.navbar.navbar-default ul{
列表样式类型:无;
文本对齐:右对齐;
}
.navbar.navbar-default ul li{
显示:内联块;
}
.下拉菜单li{
文本对齐:居中
}
.下拉菜单.下拉菜单{
背景色:#4D5061;
}
.下拉菜单.下拉菜单a{
颜色:白色;
}
.navbar.navbar-默认ul li a{
显示:内联块;
填充:3.5vh 8px 4px;
颜色:白色;
文字装饰:无;
字号:14pt;
字体系列:“Roboto”,无衬线;
}
.navbar.navbar-默认ul li:之后{
内容:'';
位置:绝对位置;
右:50%;
底部:0;
左:50%;
高度:3倍;
背景色:#FFFFFF;
边界半径:9px;
过渡:all.2s;
}
.navbar.navbar-默认ul li a:悬停{
颜色:白色;
背景色:rgba(20,50,40,0.5)
}
.nav.navbar-nav,
.nav.navbar nav>li{
浮动:无;
}
.navbar.navbar-默认ul li:悬停:之后{
右:0;
左:0;
}
.导航标题{
字号:14pt;
保证金:0;
顶部:13px;
左:45像素;
宽度:100%;
位置:绝对位置;
文本对齐:居中;
颜色:白色;
字体系列:“Roboto”,无衬线;
}
.navbar.navbar-default ul.dropdown-menu li,
.navbar.navbar-默认ul.下拉菜单LIA{
位置:相对位置;
显示:块;
}
#标志{
填充顶部:2vh;
左侧填充:20px;
浮动:左;
}
.英雄{
背景:url(“https://static.pexels.com/photos/48727/pexels-photo-48727.jpeg)居中不重复;;
背景附件:固定;
位置:相对位置;
背景尺寸:封面;
宽度:100%;
最大宽度:100%;
宽度:100vw;
身高:100%;
}
部分{
位置:相对位置;
高度:95vh;
}
.第1节{
高度:100vh;
文本对齐:居中;
颜色:白色;
}
.第2节{
背景色:#11B5E4;
文本对齐:居中;
颜色:白色;
}
.第3节{
背景色:#FFFFFF;
文本对齐:居中;
颜色:白色;
高度:90vh;
}
.fa角向下{
颜色:#4D5061;
位置:绝对位置;
底部:0px;
}
.fa角度向上{
颜色:#4D5061;
位置:绝对位置;
底部:0px;
}
.页脚{
高度:3vh;
背景色:#4D5061;
填充:0;
右:0;
底部:0;
左:0;
}
.页脚文本{
字号:14pt;
颜色:白色;
字体系列:“Roboto”,无衬线;
文本对齐:居中;
}
.profile.box{
底部:0;
身高:50%;
左:0;
保证金:自动;
位置:绝对位置;
右:0;
排名:0;
宽度:50%;
}
.形状{
边界半径:25px;
显示:内联块;
背景:#4D5061;
内容:网址(http://i1126.photobucket.com/albums/l611/ldocherty1/IMG_0730_zpsiz4dqc47.jpg);
颜色:白色;
高度:250px;
保证金:自动;
填充:3倍;
宽度:250px;
}
.shape2{
背景:线性梯度(35度,#4D5061,#4D5061);
边界半径:85px;
颜色:白色;
高度:40px;
利润率:1%自动;
不透明度:0.9;
显示:内联块;
填充:0px;
宽度:250px;
}
切换导航
利亚姆·多切蒂的数字投资组合
KJJJJJJJJJJKJKJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJ

版权所有©2017利亚姆·多切蒂的网站。版权所有。
你能再解释一下你想做什么吗?现在这看起来更清楚了吗?
<!DOCTYPE html>
<html>

<head>
  <html lang="en">
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Liam Docherty Digital Portfolio</title>
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
  <link rel="stylesheet" href="css/style.css">

  <style>
    body {
      margin: 0;
      padding: 0;
    }

    .navbar.navbar-default {
      background-color: #4D5061;
      height: 10vh;
      z-index: 100;
    }

    .navbar.navbar-default ul {
      list-style-type: none;
      text-align: right;
    }

    .navbar.navbar-default ul li {
      display: inline-block;
    }

    .dropdown-menu li {
      text-align: center
    }

    .dropdown .dropdown-menu {
      background-color: #4D5061;
    }

    .dropdown .dropdown-menu a {
      color: white;
    }

    .navbar.navbar-default ul li a {
      display: inline-block;
      padding: 3.5vh 8px 4px;
      color: white;
      text-decoration: none;
      font-size: 14pt;
      font-family: 'Roboto', sans-serif;
    }

    .navbar.navbar-default ul li:after {
      content: '';
      position: absolute;
      right: 50%;
      bottom: 0;
      left: 50%;
      height: 3px;
      background-color: #FFFFFF;
      border-radius: 9px;
      transition: all .2s;
    }

    .navbar.navbar-default ul li a:hover {
      color: white;
      background-color: rgba(20, 50, 40, 0.5)
    }

    .nav.navbar-nav,
    .nav.navbar-nav>li {
      float: none;
    }

    .navbar.navbar-default ul li:hover:after {
      right: 0;
      left: 0;
    }

    .nav-title {
      font-size: 14pt;
      margin: 0;
      top: 35px;
      left: 50px;
      width: 100%;
      position: absolute;
      text-align: center;
      color: white;
      font-family: 'Roboto', sans-serif;
    }

    .navbar.navbar-default ul.dropdown-menu li,
    .navbar.navbar-default ul.dropdown-menu li a {
      position: relative;
      display: block;
    }

    #logo {
      padding-top: 2vh;
      padding-left: 20px;
      float: left;
    }

    .hero {
      background: url("https://static.pexels.com/photos/48727/pexels-photo-48727.jpeg") center center no-repeat;;
      background-attachment: fixed;
      position: relative;
      background-size: cover;
      width: 100%;
      max-width: 100%;
      width: 100vw;
      height: 100%;
    }

    section {
      position: relative;
      height: 95vh;
    }

    .section1 {
      height: 100vh;
      text-align: center;
      color: white;
    }

    .section2 {
      background-color: #11B5E4;
      text-align: center;
      color: white;
    }

    .section3 {
      background-color: #FFFFFF;
      text-align: center;
      color: white;
      height: 90vh;
    }

    .fa-angle-down {
      color: #4D5061;
      position: absolute;
      bottom: 0px;
    }

    .fa-angle-up {
      color: #4D5061;
      position: absolute;
      bottom: 0px;
    }

    .footer {
      height: 3vh;
      background-color: #4D5061;
      padding: 0;
      right: 0;
      bottom: 0;
      left: 0;
    }

    .footertext {
      font-size: 14pt;
      color: white;
      font-family: 'Roboto', sans-serif;
      text-align: center;
    }

    .profile.box {
      bottom: 0;
      height: 50%;
      left: 0;
      margin: auto;
      position: absolute;
      right: 0;
      top: 0;
      width: 50%;
    }

    .shape {
      border-radius: 25px;
      display: inline-block;
      background: #4D5061;
      content: url(http://i1126.photobucket.com/albums/l611/ldocherty1/IMG_0730_zpsiz4dqc47.jpg);
      color: white;
      height: 250px;
      margin: auto;
      padding: 3px;
      width: 250px;
    }

    .shape2 {
      background: linear-gradient(35deg, #4D5061, #4D5061);
      border-radius: 85px;
      color: white;
      height: 40px;
      margin: 1% auto;
      opacity: 0.9;
      display: inline-block;
      padding: 0px;
      width: 250px;
    }

  </style>

</head>

<body>
  <nav class="navbar navbar-default navbar-fixed-top">
    <div class="container-fluid">
      <!-- Brand and toggle get grouped for better mobile display -->
      <div class="navbar-header">
        <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
                        <span class="sr-only">Toggle navigation</span>
                        <span class="icon-bar"></span>
                        <span class="icon-bar"></span>
                        <span class="icon-bar"></span>
                    </button>
        <a class="navbar-brand" href="#"><img src="http://placehold.it/60x60" alt="Your Brand Name"></a>
        <h1 class="nav-title">Liam Docherty's Digital Portfolio</h1>
      </div>
      <!-- Collect the nav links, forms, and other content for toggling -->
      <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
        <ul class="nav navbar-nav">
          <li><a href="#">Home</a>
          </li>
          <li class="dropdown">
            <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="true">About Me <span class="caret"></span></a>
            <ul class="dropdown-menu">
              <li><a href="#">Action</a>
              </li>
              <li><a href="#section3">Contact</a>
              </li>
              <li><a href="#">Something else here</a>
              </li>
              <li><a href="#">Separated link</a>
              </li>
              <li><a href="#">One more separated link</a>
              </li>
            </ul>
          </li>
          <li class="dropdown">
            <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Units <span class="caret"></span></a>
            <ul class="dropdown-menu">
              <li><a href="#">Action</a>
              </li>
              <li><a href="#">Another action</a>
              </li>
              <li><a href="#">Something else here</a>
              </li>

              <li><a href="#">Separated link</a>
              </li>

              <li><a href="#">One more separated link</a>
              </li>
            </ul>
          </li>
          <li><a href="#">Clients</a>
          </li>
          <li><a href="#contact-me">Contact Me</a>
          </li>
        </ul>
      </div>
      <!-- /.navbar-collapse -->
    </div>
    <!-- /.container-fluid -->
  </nav>


  <section id="section1" class="section1">
    <div class="hero">
      <div class="row">
        <div class="col-sm-6 col-sm-offset-3" style="background-color:pink;">
          <div class="profile box">
            <div class="shape"></div>
            <div class="shape2">
              <p>kjjjjjjjjjkjjjkkjkj</p>
            </div>
          </div>
        </div>
      </div>
    </div>





    <a href="#section2"><i class="fa fa-angle-down" style="font-size:100px;"></i></a>

  </section>
  <section id="section2" class="section2">


    <a href="#contact-me"> <i class="fa fa-angle-down" style="font-size:100px;"></i></a>

  </section>

  <section id="contact-me" class="contact_section section3">


    <a href="#section1"> <i class="fa fa-angle-up" style="font-size:100px;"></i></a>

  </section>
  <script src="https://code.jquery.com/jquery-3.1.1.js" integrity="sha256-16cdPddA6VdVInumRGo6IbivbERE8p7CQR3HzTBuELA=" crossorigin="anonymous"></script>
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>

  <footer>
    <div class="footer">
      <h2 class="footertext">Copyright © 2017 Liam Docherty's Site. All rights reserved.</h2>
    </div>
  </footer>
</body>

</html>
<head>
  <html lang="en">
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Liam Docherty Digital Portfolio</title>
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
  <link rel="stylesheet" href="css/style.css">

  <style>
    body {
      margin: 0;
      padding: 0;
    }

    .navbar.navbar-default {
      background-color: #4D5061;
      height: 10vh;
      z-index: 100;
    }

    .navbar.navbar-default ul {
      list-style-type: none;
      text-align: right;
    }

    .navbar.navbar-default ul li {
      display: inline-block;
    }

    .dropdown-menu li {
      text-align: center
    }

    .dropdown .dropdown-menu {
      background-color: #4D5061;
    }

    .dropdown .dropdown-menu a {
      color: white;
    }

    .navbar.navbar-default ul li a {
      display: inline-block;
      padding: 3.5vh 8px 4px;
      color: white;
      text-decoration: none;
      font-size: 14pt;
      font-family: 'Roboto', sans-serif;
    }

    .navbar.navbar-default ul li:after {
      content: '';
      position: absolute;
      right: 50%;
      bottom: 0;
      left: 50%;
      height: 3px;
      background-color: #FFFFFF;
      border-radius: 9px;
      transition: all .2s;
    }

    .navbar.navbar-default ul li a:hover {
      color: white;
      background-color: rgba(20, 50, 40, 0.5)
    }

    .nav.navbar-nav,
    .nav.navbar-nav>li {
      float: none;
    }

    .navbar.navbar-default ul li:hover:after {
      right: 0;
      left: 0;
    }

    .nav-title {
    font-size: 14pt;
    margin: 0;
    top: 13px;
    left: 45px;
    width: 100%;
    position: absolute;
    text-align: center;
    color: white;
    font-family: 'Roboto', sans-serif;
    }

    .navbar.navbar-default ul.dropdown-menu li,
    .navbar.navbar-default ul.dropdown-menu li a {
      position: relative;
      display: block;
    }

    #logo {
      padding-top: 2vh;
      padding-left: 20px;
      float: left;
    }

    .hero {
      background: url("https://static.pexels.com/photos/48727/pexels-photo-48727.jpeg") center center no-repeat;;
      background-attachment: fixed;
      position: relative;
      background-size: cover;
      width: 100%;
      max-width: 100%;
      width: 100vw;
      height: 100%;
    }

    section {
      position: relative;
      height: 95vh;
    }

    .section1 {
      height: 100vh;
      text-align: center;
      color: white;
    }

    .section2 {
      background-color: #11B5E4;
      text-align: center;
      color: white;
    }

    .section3 {
      background-color: #FFFFFF;
      text-align: center;
      color: white;
      height: 90vh;
    }

    .fa-angle-down {
      color: #4D5061;
      position: absolute;
      bottom: 0px;
    }

    .fa-angle-up {
      color: #4D5061;
      position: absolute;
      bottom: 0px;
    }

    .footer {
      height: 3vh;
      background-color: #4D5061;
      padding: 0;
      right: 0;
      bottom: 0;
      left: 0;
    }

    .footertext {
      font-size: 14pt;
      color: white;
      font-family: 'Roboto', sans-serif;
      text-align: center;
    }

    .profile.box {
      bottom: 0;
      height: 50%;
      left: 0;
      margin: auto;
      position: absolute;
      right: 0;
      top: 0;
      width: 50%;
    }

    .shape {
      border-radius: 25px;
      display: inline-block;
      background: #4D5061;
      content: url(http://i1126.photobucket.com/albums/l611/ldocherty1/IMG_0730_zpsiz4dqc47.jpg);
      color: white;
      height: 250px;
      margin: auto;
      padding: 3px;
      width: 250px;
    }

    .shape2 {
      background: linear-gradient(35deg, #4D5061, #4D5061);
      border-radius: 85px;
      color: white;
      height: 40px;
      margin: 1% auto;
      opacity: 0.9;
      display: inline-block;
      padding: 0px;
      width: 250px;
    }

  </style>

</head>

<body>
  <nav class="navbar navbar-default navbar-fixed-top">
    <div class="container-fluid">
      <!-- Brand and toggle get grouped for better mobile display -->
      <div class="navbar-header">
        <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
                        <span class="sr-only">Toggle navigation</span>
                        <span class="icon-bar"></span>
                        <span class="icon-bar"></span>
                        <span class="icon-bar"></span>
                    </button>
        <a class="navbar-brand" href="#"><img src="http://placehold.it/60x60" alt="Your Brand Name"></a>
        <h1 class="nav-title">Liam Docherty's Digital Portfolio</h1>
      </div>
      <!-- Collect the nav links, forms, and other content for toggling -->
      <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
        <ul class="nav navbar-nav">
          <li><a href="#">Home</a>
          </li>
          <li class="dropdown">
            <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="true">About Me <span class="caret"></span></a>
            <ul class="dropdown-menu">
              <li><a href="#">Action</a>
              </li>
              <li><a href="#section3">Contact</a>
              </li>
              <li><a href="#">Something else here</a>
              </li>
              <li><a href="#">Separated link</a>
              </li>
              <li><a href="#">One more separated link</a>
              </li>
            </ul>
          </li>
          <li class="dropdown">
            <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Units <span class="caret"></span></a>
            <ul class="dropdown-menu">
              <li><a href="#">Action</a>
              </li>
              <li><a href="#">Another action</a>
              </li>
              <li><a href="#">Something else here</a>
              </li>

              <li><a href="#">Separated link</a>
              </li>

              <li><a href="#">One more separated link</a>
              </li>
            </ul>
          </li>
          <li><a href="#">Clients</a>
          </li>
          <li><a href="#contact-me">Contact Me</a>
          </li>
        </ul>
      </div>
      <!-- /.navbar-collapse -->
    </div>
    <!-- /.container-fluid -->
  </nav>


  <section id="section1" class="section1">
    <div class="hero">
      <div class="row">
        <div class="col-sm-6 col-sm-offset-3" style="background-color:pink;">
          <div class="profile box">
          <div class="form-group">
            <div class="shape"></div>
            </div>
            <div class="form-group">
            <div class="shape2">
              <p>kjjjjjjjjjkjjjkkjkj</p>
            </div>
            </div>
          </div>
        </div>
      </div>
    </div>





    <a href="#section2"><i class="fa fa-angle-down" style="font-size:100px;"></i></a>

  </section>
  <section id="section2" class="section2">


    <a href="#contact-me"> <i class="fa fa-angle-down" style="font-size:100px;"></i></a>

  </section>

  <section id="contact-me" class="contact_section section3">


    <a href="#section1"> <i class="fa fa-angle-up" style="font-size:100px;"></i></a>

  </section>
  <script src="https://code.jquery.com/jquery-3.1.1.js" integrity="sha256-16cdPddA6VdVInumRGo6IbivbERE8p7CQR3HzTBuELA=" crossorigin="anonymous"></script>
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>

  <footer>
    <div class="footer">
      <h2 class="footertext">Copyright © 2017 Liam Docherty's Site. All rights reserved.</h2>
    </div>
  </footer>
</body>

</html>