-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathquantofeed.html
More file actions
40 lines (37 loc) · 1.71 KB
/
Copy pathquantofeed.html
File metadata and controls
40 lines (37 loc) · 1.71 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Quantum Computing News</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</head>
<body>
<nav class="navbar navbar-expand-sm bg-dark navbar-dark">
<a class="navbar-brand" href="#">Quantum Computing News</a>
</nav>
<div class="container mt-3">
<div class="row">
<div class="col-sm-8">
<h2>News Feed</h2>
<div class="card mb-3">
<img class="card-img-top" src="https://serpapi.com/searches/653e383e681ebef723f4e25a/images/442ef49b7ef37fa867bf806b4bc607a298a09d225c0323c5c49c0c2a03dc249f.jpeg" alt="News image">
<div class="card-body">
<h5 class="card-title"><a href="https://physicsworld.com/a/three-qubit-computing-platform-is-made-from-electron-spins/">Three-qubit computing platform is made from electron spins – Physics World</a></h5>
<p class="card-text">A quantum computing platform that is capable of the simultaneous operation of multiple spin-based quantum bits (qubits) has been created by...</p>
<p class="card-text"><small class="text-muted">Posted 1 hour ago</small></p>
</div>
</div>
<!-- Add more news items here -->
</div>
<div class="col-sm-4">
<h2>Sidebar</h2>
<p>Additional content goes here.</p>
</div>
</div>
</div>
</body>
</html>