Skip to main content

Test iOS

This is a test from iOS simulator. 

Bold text 

Italic text

Underline 

Strikethrough

Text color

Text background color

Header 1

Header 2

Header 3

Header 4

Header 5

Header 6 

Paragraph

Quote text 

Text size 

Text font 

Align left

Align center

Align right

Align justify

Indent 1

Indent 2

Superscript

Subscript


This a link to google
Horizontal line

Comments

Popular posts from this blog

Using textures in WebGL

Loading textures The first thing to do is add code to load the textures. In our case, we'll be using a single texture, mapped onto all six sides of our rotating cube, but the same technique can be used for any number of textures. Note: It's important to note that the loading of textures follows cross-domain rules; that is, you can only load textures from sites for which your content has CORS approval. See Cross-domain textures below for details. The code that loads the texture looks like this: // // Initialize a texture and load an image. // When the image finished loading copy it into the texture. // function loadTexture(gl, url) {   const texture = gl.createTexture();   gl.bindTexture(gl.TEXTURE_2D, texture);   // Because images have to be download over the internet   // they might take a moment until they are ready.   // Until then put a single pixel in the texture so we can   // use it immediately. When the image has finished downloading   // we'l...

Upload video 2

Upload image 4