testimonial.php
См. документацию.
1 <?php
2 
3 /**
4  * @file
5  * @brief страница
6  */
7 
8 ?>
9 <script>
10  addEventListener('DOMContentLoaded', () => {
11  $('body').addClass('sub_page');
12  });
13 </script>
14 <div class="hero_area">
15  <!-- header section strats -->
16  <header class="header_section">
17  <div class="container-fluid">
18  <nav class="navbar navbar-expand-lg custom_nav-container">
19  <a class="navbar-brand" href="/">
20  <span>
21  Delfood
22  </span>
23  </a>
24  <div class="" id="">
25  <div class="User_option">
26  <a href="">
27  <i class="fa fa-user" aria-hidden="true"></i>
28  <span>Login</span>
29  </a>
30  <form class="form-inline ">
31  <input type="search" placeholder="Search" />
32  <button class="btn nav_search-btn" type="submit">
33  <i class="fa fa-search" aria-hidden="true"></i>
34  </button>
35  </form>
36  </div>
37  <div class="custom_menu-btn">
38  <button onclick="openNav()">
39  <img src="images/menu.png" alt="">
40  </button>
41  </div>
42  <div id="myNav" class="overlay">
43  <div class="overlay-content">
44  <a href="./index">Home</a>
45  <a href="./about">About</a>
46  <a href="./blog">Blog</a>
47  <a href="./testimonial">Testimonial</a>
48  </div>
49  </div>
50  </div>
51  </nav>
52  </div>
53  </header>
54  <!-- end header section -->
55 </div>
56 
57 
58 <!-- client section -->
59 
60 <section class="client_section layout_padding">
61  <div class="container">
62  <div class="col-md-11 col-lg-10 mx-auto">
63  <div class="heading_container heading_center">
64  <h2>
65  Testimonial
66  </h2>
67  </div>
68  <div id="customCarousel1" class="carousel slide" data-ride="carousel">
69  <div class="carousel-inner">
70  <div class="carousel-item active">
71  <div class="detail-box">
72  <h4>
73  Virginia
74  </h4>
75  <p>
76  Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and
77  </p>
78  <i class="fa fa-quote-left" aria-hidden="true"></i>
79  </div>
80  </div>
81  <div class="carousel-item">
82  <div class="detail-box">
83  <h4>
84  Virginia
85  </h4>
86  <p>
87  Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and
88  </p>
89  <i class="fa fa-quote-left" aria-hidden="true"></i>
90  </div>
91  </div>
92  <div class="carousel-item">
93  <div class="detail-box">
94  <h4>
95  Virginia
96  </h4>
97  <p>
98  Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and
99  </p>
100  <i class="fa fa-quote-left" aria-hidden="true"></i>
101  </div>
102  </div>
103  </div>
104  <a class="carousel-control-prev d-none" href="#customCarousel1" role="button" data-slide="prev">
105  <span class="carousel-control-prev-icon" aria-hidden="true"></span>
106  <span class="sr-only">Previous</span>
107  </a>
108  <a class="carousel-control-next" href="#customCarousel1" role="button" data-slide="next">
109  <i class="fa fa-arrow-right" aria-hidden="true"></i>
110  <span class="sr-only">Next</span>
111  </a>
112  </div>
113  </div>
114  </div>
115 </section>
116 
117 <!-- end client section -->
href
Definition: main.php:21