-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·58 lines (49 loc) · 2.09 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/style.css">
<title>
TechSavvy Website
</title>
</head>
<body>
<header>
<h1>TechSavvy</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Products</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</nav>
</header>
<main>
<section class="section">
<h1>
Newer Than Before..
</h1>
<img src="https://webcube360.com/wp-content/uploads/2020/08/Top_10_technology_products.jpg" alt="tech-photo" width="500px">
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Corrupti dignissimos architecto officiis neque tenetur ea magnam sequi, voluptates nemo hic molestias, possimus ipsum provident delectus at nam facilis. Praesentium illo tempore officia beatae! Cumque, officia?
</p>
</section>
<section class="section">
<h1>
Another Post..
</h1>
<img src="https://timebusinessnews.com/wp-content/uploads/2019/10/Best-Tech-Products-You-Should-Have-In-2019-800x445.jpg" alt="tech-photo2" width="500px">
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Corrupti dignissimos architecto officiis neque tenetur ea magnam sequi, voluptates nemo hic molestias, possimus ipsum provident delectus at nam facilis. Praesentium illo tempore officia beatae! Cumque, officia?
</p>
</section>
<aside>
<img src="https://www.drupal.org/files/project-images/selective_tweets-screenshot-1.png" alt="twitter-feed">
</aside>
</main>
<footer>
© TechSavvy
</footer>
<script src="javascript/app.js"></script>
</body>
</html>