-
Notifications
You must be signed in to change notification settings - Fork 1
/
portfolio.html
112 lines (96 loc) · 2.78 KB
/
portfolio.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>fish</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<a id="logo" href="portfolio.html">
<img src="img/avatar.jpeg" alt="logo">
<span>Candy</span>
</a>
<nav>
<ul>
<li><a href="#">ABOUT</a></li>
<li><a href="#">SKILL</a></li>
<li><a href="#">CONTACT</a></li>
</ul>
</nav>
</header>
<main>
<div class="hero">
<div class="hero-content">
<h1 class="hero-title">HELLO!</h1>
<p>THE BEST AND MOST COMPREHENSIVE WEBSITE EVER</p>
<a href="#" >LEARN MORE</a>
<a href="#" >SIGN UP</a>
</div>
</div>
<div class="site-section">
<div class="site-section-inside">
<div class="section-header">
<h2>KEY FEATURES</h2>
</div>
<div class=" feature-box">
<img src="img/faces.png" alt="Easy to Use">
<h5>Easy to Use</h5>
<p>Just think of how easy it is....So easy to do....So can you!!!</p>
</div>
<div class=" feature-box">
<img src="img/like.png" alt="Fun to Use">
<h5>Fun to Use</h5>
<p>Just think of how easy it is....So easy to do....So can you!!!</p>
</div>
<div class=" feature-box">
<img src="img/heart.png" alt="Fun to Use">
<h5>You'll love it!</h5>
<p>Just think of how easy it is....So easy to do....So can you!!!</p>
</div>
</div>
</div>
<div class="site-section site-section-secondary" >
<div class="site-section-inside">
<div class="section-header">
<h2>What The People Say!</h2>
</div>
<div class="testimonial-box">
<div class="testimonial-content">
Their service is by far is the most influencial i've ever seen!
</div>
<div class="testimonial-author">
<img src="img/chaitanya.jpg" alt="Chaitanya">
<h5>Chaitanya</h5>
<span> Man with -99 IQ</span>
</div>
</div>
<div class="testimonial-box">
<div class="testimonial-content">
Their service is by far is the most influencial i've ever seen!
</div>
<div class="testimonial-author">
<img src="img/manasa.jpeg" alt="MANASA">
<h5>Manasa</h5>
<span> Queen of Angular</span>
</div>
</div>
<div class="testimonial-box">
<div class="testimonial-content">
Their service is by far is the most influencial i've ever seen!
</div>
<div class="testimonial-author">
<img src="img/manohar.jpeg" alt="Manohar">
<h5>Manohar</h5>
<span> King of fire base</span>
</div>
</div>
</div>
</div>
</main>
<footer>
<img src="img/avatar.jpeg" alt="footer logo">
<span>Manasa <br>Copyright ©2021-3015</span>
</footer>
</body>
</html>