-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0519914
commit f47b8a1
Showing
3 changed files
with
98 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<link rel="stylesheet" type="text/css" href="../style.css"> | ||
<link rel="alternate" type="application/rss+xml" title="RSS" href="../rss.xml"> | ||
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.15.6/styles/default.min.css" /> | ||
<title>fundamental physics</title> | ||
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> | ||
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> | ||
|
||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
|
||
<style> | ||
body { | ||
background-image: url('../Images/parchment.jpg'); | ||
background-size: cover; | ||
background-repeat: no-repeat; | ||
background-attachment: fixed; | ||
margin: 0; | ||
font-family: Arial, sans-serif; | ||
padding: 3cm; /* Add 3cm padding on all sides */ | ||
} | ||
|
||
#content { | ||
color: #333; | ||
font-size: 20px; /* Increase base font size */ | ||
line-height: 1.6; | ||
max-width: 1200px; | ||
margin: 0 auto; | ||
padding: 10px; | ||
background-color: rgba(255, 255, 255, 0.5); | ||
} | ||
|
||
h1 { | ||
font-size: 28; /* Smaller size for h1 */ | ||
color: black; | ||
} | ||
|
||
h2 { | ||
font-size: 26px; /* Smaller size for h2 */ | ||
color: blue; | ||
} | ||
|
||
h3 { | ||
font-size: 24px; /* Smaller size for h3 */ | ||
color: orange; | ||
} | ||
|
||
h4 { | ||
font-size: 20; /* Smaller size for h3 */ | ||
color: purple; | ||
} | ||
|
||
h5,h6 { | ||
font-size: 18; | ||
color: red; | ||
} | ||
|
||
img { | ||
display: block; | ||
max-width: 100%; | ||
max-height: 500px; | ||
margin: 30px auto; /* Add space above and below images */ | ||
} | ||
|
||
/* Mobile Styles */ | ||
@media only screen and (max-width: 600px) { | ||
body { | ||
padding: 1cm; /* Adjust padding for smaller screens */ | ||
} | ||
|
||
#content { | ||
padding: 10px; /* Adjust padding for smaller screens */ | ||
max-width: 100%; /* Set maximum width for smaller devices */ | ||
} | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div id="content"> | ||
|
||
|
||
<p> | ||
By fundamental physics I mean branch of physics which deals with most fundamental structure and behaviour of the matter which is widely known as "Particle physics or High energy physics". Some might consider condensed matter physics as more fundamental as it explains emergent behaviour of collection of particles. I don't consider that a good argument as there is not any single example of strong emergence in our nature; if there is it might be the consciousness but still many neuroscientists believe that consciousness is weak emergence meaning it can be explained via study of all the matter which makes up brain.<br /> | ||
</p> | ||
|
||
</div> | ||
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.15.6/highlight.min.js"></script> | ||
<script type="text/javascript"> | ||
document.querySelectorAll('pre').forEach(block => hljs.highlightBlock(block)); | ||
</script> | ||
</body> | ||
</html> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters